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
80 views
0
Is it possible to rewrite the following Promise code with async/await?

Thank you for your help.As stated in the title, is it possible to rewrite the code shown below to do the same with async/await?function hello(){ return new Promise ((resolve, reject) = > { setTime...

2 years ago

1 answers
144 views
0
I would like to test Service Worker in a local environment using iOS.

When I tried to operate using browser-sync in Node.js, server.jsvar browserSync=require(browser-sync);browserSync({ server: /public, https:true,});package.json{ name: 01, version: 1.0.0, description:,...

2 years ago

2 answers
118 views
0
I don't know how to wrap it up.

I'd like to make these codes into one, but I don't know how to do it.This is the code for the memo function that Chrome extension is considering implementing.I don't know how to deal with errors, so I...


1 answers
75 views
0
Information About Three or More Voice Handling in a Web Browser

質問Question Summary 】 Would it be possible to obtain more than three microphone sounds through a browser such as Chrome?EnvironmentOur environment is as follows.·Windows 10pro·Google Chrome version: 64...


2 answers
38 views
0
I want to get the number of the data array displayed in HTML on the javascript side.

I'm studying HTML5 and Spring Boot.You can verify that multiple testLabels passed from the control source side are displayed on the screen as shown below.When islink is true, I was able to confirm tha...

2 years ago

1 answers
136 views
0
Why can't I call the external JS function Window.hoge?

I am developing a Gawa native application using WebView at Swift.The UIViewController cannot send the value to the function declaring the value in the external JS.Why?With the code below, window.a() c...


1 answers
64 views
0
Understanding the Order of the CSS Grid Layout

I would like to implement a grid layout that meets the following requirements, but I don't know how to do it, so I would like to ask you a question.The layout can be changed depending on the number of...

2 years ago

1 answers
61 views
0
I want to define a function that returns one of the strings specified in typescript.

I am writing in typescript.I would like to write a function to fall back to the default locale when the system returns a different locale because the language (locale) supported by an application is l...

2 years ago

1 answers
90 views
0
Understanding QuerySnapshot Values Returned by Cloud Firestore Library in JavaScript

I would like to ask you about the return value in the Cloud Firestore library.Regarding the value returned when executing the code below, is this an instance?For example, if I want to retrieve the 'te...


1 answers
30 views
0
MediaElement.js search results are mixed

I am using MediaElement.js, and the following message will be reflected in Google's search results.Initializing...stage:500x375 file:[Video path] autoplay:false preload: none isvideo:true smoothing...

2 years ago
« - 48 - »

© 2024 OneMinuteCode. All rights reserved.