javascript tag

JavaScript (/ˈdʒɑːvəskrɪpt/), often abbreviated JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for web page behavior, often incorporating third-party libraries. All major web browsers have a dedicated JavaScript engine to execute the code on users' devices.

JavaScript is a high-level, often just-in-time compiled language that conforms to the ECMAScript standard. It has dynamic typing, prototype-based object-orientation, and first-class functions. It is multi-paradigm, supporting event-driven, functional, and imperative programming styles. It has application programming interfaces (APIs) for working with text, dates, regular expressions, standard data structures, and the Document Object Model (DOM).

The ECMAScript standard does not include any input/output (I/O), such as networking, storage, or graphics facilities. In practice, the web browser or other runtime system provides JavaScript APIs for I/O.

JavaScript engines were originally used only in web browsers, but are now core components of some servers and a variety of applications. Two of the most popular runtime systems for this usage are Node.js and Deno.

Although Java and JavaScript are similar in name, syntax, and respective standard libraries, the two languages are distinct and differ greatly in design.

Reference: WIKIPEDIA

1427 questions


1 answers
88 views
0
How do I determine if my device is IOS?

I want to check if the device is IOS and do different processing only if it is IOS. But how do I check if it's IOS?

2 years ago

1 answers
37 views
0
How to refresh a page with jQuery

How do I refresh the page with jQuery?

2 years ago

1 answers
107 views
0
How to dynamically merge two JavaScript object properties

var obj1 = { food: 'pizza', car: 'ford' }var obj2 = { animal: 'dog' }obj1.merge(obj2);//obj1 now has three properties: food, car, and animalI'd like to dynamically merge the two object properties as i...

2 years ago

1 answers
38 views
0
I want to use jQuery to make DIV come out in the center of the screen, what should I do?

I want to use jQuery to make DIV come out in the center of the screen, what should I do?

2 years ago

1 answers
76 views
0
I ask you again about javascript.

It is being developed as Django. When you click the button on the left, you want to print an application page on the right id=right.Script source now <script>function button1(){document.getEleme...

2 years ago

2 answers
130 views
0
Can I stop the Alt+space system menu from working in my web browser?

I don't want to change it to another one because the shortcut key is alt in the web application.

2 years ago

1 answers
83 views
0
When implementing web push service from node.js to socket.io

Hello, everyone Node.js wants to use socket.io to implement real-time push services on the web.There is a push server and a web server separately, but I want to push to the push server when I write a ...


1 answers
78 views
0
To enter new values for an array in JavaScript

In php, $array = array();$array[] = value1;$array[] = value2;$array[] = value3;How do I do this in JavaScript?

2 years ago

1 answers
44 views
0
How to capitalize the first letter of a string in JavaScript

this is a test -> This is a testthe Eiffel Tower -> The Eiffel Tower/index.html -> /index.htmlI want to capitalize the first letter of the string in JavaScript like this, but I don't know how...


1 answers
18 views
0
How do I save it in float format in JavaScript?

I'd like to convert float to String in JavaScript. How can I see only the second decimal place? For example, if I have 0.3445434, I want to save up to 0.34

2 years ago
« - 101 - »

© 2024 OneMinuteCode. All rights reserved.