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
47 views
0
Is the JS key entry timing off on Edge?

When you receive keystrokes in JavaScript on your browser's Edge, Is it just my imagination that the timing sometimes goes wrong?For the most obvious example, press and hold the right side of the dire...

2 years ago

1 answers
21 views
0
Obtain the value of the name in the javascript checkbox

What code can I use to get the value of name when the check box is checked in html such as the following?Please let me know if you know more.<divid=size-category-tab-22 class=tab-plane> <div ...

2 years ago

1 answers
94 views
0
Node.js Library Cannot Enter Keyboard

I wanted to use the game pad to enter characters on MacOS, so I was creating a program.My language and environment is javascript/node.js/Electron, and my library is robot.js.The keyboard input emulati...

2 years ago

2 answers
69 views
0
I want to call action when button is pressed

Developing web applications in Struts 1.3.Therefore, we are using html:button.The following JavaScript errors appear:TypeError: document.XxxForm.submit is not a functionThe jsp is described in <htm...

2 years ago

1 answers
70 views
0
Google Maps API V3 is unable to view street views.

I use the Google Maps API javascript V3 to display the map on the web page with my own script.The maps and markers that are displayed by default are displayed without any problems, but if you drag and...

2 years ago

1 answers
24 views
0
Can't XMLHttpRequest pass the get communication value?

What I want to do is put a query string in get_ajax_text.php and communicate via get.I tried to make a test code, but I couldn't even communicate with get in the previous stage.Crying If you enter the...

2 years ago

1 answers
33 views
0
Regarding the submission of deliverables through crowdsourcing services, etc. [Closed]

Do you want to improve this question?Edit this post and update the question to focus on one issueClosed 3 years ago.Three years agoHow can I submit my deliverables?I mainly want to submit things like ...

2 years ago

1 answers
86 views
0
How to debug javascript within the VisualStudio 2017 Django project

We are developing the Django project using VisualStudio 2017.I can't debug the javascript that I'm using.Could you tell me how to enable javascript debugging?I debugged the javascript code with a brea...


1 answers
58 views
0
vue3 How can this be achieved?

We are currently creating a page that lists posts from users.I would like to set up a menu that contains options such as Edit and Delete in each of those posts.The menu opens and closes by clicking th...

2 years ago

4 answers
38 views
0
Is there a name for a method that destroys an argument, like a destructive method when the caller changes state?

obj.fn(x)What is the name of the function that changes the value of the argument x before and after calling?Ruby is obj.reverse!The one whose state of obj changes in is called a destructive method.It'...

2 years ago
« - 70 - »

© 2024 OneMinuteCode. All rights reserved.