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
283 views
0
How to access a development server powered by VueCLI from a smartphone in your local network and handle media (such as a microphone)

I would like to handle the sound of microphones connected to smartphones and PCs within a web application configured with VueCLI.I would like to access the development server built on the development ...

1 years ago

1 answers
415 views
0
I want to use extensions to read json files in extensions

The whole thing you want to doExtensions detect notifications implemented on the website and block notifications when url in the block list is transition destination urlI would like to read the json f...


1 answers
305 views
0
I want to make a 5x5 vertical block pole in Minecraft.

Minecraft JavaScriptWhat you want to do1. Place three blocks vertically in the position where the area is located2.Take two steps and re-arrange the same block vertically with the areaI want to go aro...

1 years ago

1 answers
475 views
0
I want to get the url of window.open() implemented in the site by browser extension before opening it.

The whole thing you want to doIn order to prevent transitions to phishing sites by notifications in the site, if notifications using Notification api are detected in the site, the title and body conte...


1 answers
327 views
0
DISPLAYING METHOD OF DOT PICTURE FONT HOMEWORK ON BROWSER GAME

I'm trying to create a dot-picture game with HTML, CSS, and JavaScript, but I don't know how to display fonts that aren't on the other PC.The library uses p5.js, and I have no other plans to use it.

1 years ago

1 answers
388 views
0
DISPLAYING METHOD OF DOT PICTURE FONT HOMEWORK ON BROWSER GAME

I'm trying to create a dot-picture game with HTML, CSS, and JavaScript, but I don't know how to display fonts that aren't on the other PC.The library uses p5.js, and I have no other plans to use it.

1 years ago

1 answers
280 views
0
Splitting Two Strings with Half-width Spaces

Divide two strings by half-width space (equivalent to paiza rank D)Attempt to run with split method results in an error.Please let me know.process.stdin.resume();process.stdin.setEncoding('utf8');varl...

1 years ago

1 answers
258 views
0
I want to read the contents of the file and use node-gzip.

I am thinking of compressing the file with JavaScript and transferring it to the server in node-gzip.On this page, as shown below (see ), there is a description of the text as input.(Here's 'Hello Wor...

1 years ago

1 answers
401 views
0
I want to implement HLS playback using rails, react-player and hls.js.

With rails at the back end and react/typescript at the front, we would like to implement the streaming playback feature using react-player and hls.js.Currently, I use a video tag to retrieve mp4 from ...


1 answers
363 views
0
I want to extract characters in parentheses and return empty characters if the result is empty.

Find the range bounded by () from the string passed by the argument str and return the string for that part.() returns empty characters if the contents are empty.() returns the contents of the first p...

« - 6 - »

© 2024 OneMinuteCode. All rights reserved.