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


2 answers
426 views
0
Do you have a file browser-style JavaScript library?

I am looking for a JavaScript library that can realize the user interface like the attached image.Does anyone know of a library that can easily represent a file or folder tree?

1 years ago

1 answers
416 views
0
Create table to arrange json array using for statement

Hello, I'm confused about the For Moon. Currently, we are implementing a table using json data.let monthPrint = [ { { SelectedDate: '2022-12-01' }, { { SelectedDate: '2022-12-02' }, /* ... */ { { Sele...

1 years ago

1 answers
419 views
0
Create a page that automatically multiplies three numbers

I'm solving HTML and Javascript practice questions for beginners.Have the user enter three numbers and create a web page that automatically multiplies them.(Use HTML form instead of Javascript alert o...

1 years ago

1 answers
376 views
0
Create a page that automatically multiplies three numbers

I'm solving HTML and Javascript practice questions for beginners.Have the user enter three numbers and create a web page that automatically multiplies them.(Use HTML form instead of Javascript alert o...

1 years ago

1 answers
253 views
0
Create a page that automatically multiplies three numbers

I'm solving HTML and Javascript practice questions for beginners.Have the user enter three numbers and create a web page that automatically multiplies them.(Use HTML form instead of Javascript alert o...

1 years ago

1 answers
454 views
0
Create a page that automatically multiplies three numbers

I'm solving HTML and Javascript practice questions for beginners.Have the user enter three numbers and create a web page that automatically multiplies them.(Use HTML form instead of Javascript alert o...

1 years ago

1 answers
444 views
0
Processing of for statements in a program that converts a one-dimensional array into a two-dimensional array

I found an example of a program online that stores array_1 one-dimensional arrays as two-dimensional arrays in array_2.Source: Convert a one-dimensional array to a two-dimensional arrayRegarding the f...


1 answers
434 views
0
I want jQuery to allow me to select only the most recent element when I select an element in the *:contains('AAA') selector.

<table><tr><td>AAA</td></tr><tr><td>BBB</td></tr></table>If there is HTML, In jQuery$(*:contains('AAA')).addClass('hoge');In that case, clas...

1 years ago

1 answers
325 views
0
I want to know how to prepare js const array member variables I don't know how to use Object.freeze

As for the data of the array of fall kick patterns when rotating in the production of the Tetris game, I would like to use const, but I would like to use // comment section as a reference site, but it...

1 years ago

1 answers
367 views
0
I want Nodejs to repeat MySQL query statements synchronously

I am currently studying Javascript using Nodejs.I would like to store the values obtained by executing the query statement in an array, but it will become asynchronous, so it will not store data after...

1 years ago
« - 4 - »

© 2024 OneMinuteCode. All rights reserved.