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
130 views
0
If you put a Japanese folder in a folder monitored by gulp-watch, it stops with an error.

If you create and rename a new folder in a folder that is being monitored by gulp-watch, an ENOENT error will occur and the monitoring will stop.Instead of not using the folder name in Japanese, If po...

2 years ago

2 answers
111 views
0
console.log and document.write

What is the difference between console.log and document.write?Previously, I thought it would be visible or invisible in the browser, but The browser and console had different output codesvaro={x:1,y:2...

2 years ago

1 answers
74 views
0
View pie chart in D3 by reading text file in aax

You can save $data=$_POST[item]., .$_POST[tanka]., .$_POST[zaiko]. n; in text.I don't know two things when I make a pie chart of this stock.1. How do you drop the desired data in the text file into th...

2 years ago

1 answers
53 views
0
Error when requesting in JavaScript: Cannot find module

I wanted to create a website where I could broadcast Bitcoin transactions, so I modified some of the code for this site and ran it in my browser with the following error:Error: Cannot find module 'bit...

2 years ago

2 answers
28 views
0
How do I use Zlib.js, a library that can be Gzip compressed in JavaScript?

https://pisuke-code.com/javascript-usage-of-zlib-js/The above is the detailed article, but as a beginner, I couldn't understand it well, so I would appreciate it if you could give me an easy explanati...

2 years ago

1 answers
34 views
0
Understanding Javacript SetInterval Processing

We have reloaded an object called Tableau in SetInterval with the following code:However, SetInterval periodically vomits the execution queue regardless of whether the reload process is complete or in...

2 years ago

1 answers
73 views
0
Can I install multiple versions of the same npm package name in a subdirectory?

Specifically, regarding AngularJS installation, running [email protected] and [email protected] in each subdirectory will enter the ./node_modules of all routes..├-- node_modules<- get in her...

2 years ago

1 answers
63 views
0
How to have div elements perform keystrokes on their behalf in jQuery

Is there any way to keep pressing the down arrow key while clicking the div element down below?As far as I'm concerned, I think I can use onmusedown to make the decision, but I don't know how to have ...

2 years ago

1 answers
27 views
0
I want to take action if the values of the variables do not match in JavaScript.

I have prepared two input tags for the password.If the value entered in the first input tag does not match the value of the second confirmation input tag when submit is pressed, I would like to write ...

2 years ago

2 answers
26 views
0
How to Copy to Clipboard

https://rubygems.org/gems/i18n/versions/0.7.0On the right side of this site, there is a button to copy the text to the clipboard.If you look at html, there are the target characters in the data attrib...

2 years ago
« - 47 - »

© 2024 OneMinuteCode. All rights reserved.