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
86 views
0
I want to build a web server with websocket.

I was thinking about controlling Leapmotion using RaspberryPi3, but I learned that Leamotion cannot be connected directly to RaspberryPi3.I recently learned that the only way to connect Leapmotion to ...


1 answers
89 views
0
I want to control the volume using the audio tag on ios.

I want to control the volume by using volume in the audio tag.It can be controlled by a web browser, but not by a terminal (ios).I tried the volume between 0.0 and 1.0, but there is no difference in t...

2 years ago

1 answers
70 views
0
How do I change the zoom magnification so that all markers installed in OpenLayers fit in?

OpenStreetMap and OpenLayers have multiple markers on the map.The position of this marker varies, so I would like to make it like the Google Maps API fitBounds method so that all markers can be seen w...


2 answers
112 views
0
About displaying badges on icons

Currently, we are developing smartphone applications using Monaca, and it is located in the app I would like to display the number of unreads in the list on the icon on the home screen.However, as you...


1 answers
95 views
0
I write Angular in TypeScript, but I want to inject the service into the controller and call the function, but it doesn't work.

I write Angular in TypeScript, but I want to inject the service into the controller and call the function, but it doesn't work.Expected definitions and behaviors are ○ Separate the service from the co...


3 answers
112 views
0
I want to get the height of a specific element in modal

Currently, I am creating a page for modal display using version 3.3.6 of modal.js.This screen has a button, and when you click the button, a modal window appears.Some modals are wrapped in <p>, ...


1 answers
51 views
0
Understanding Differences in Query Behavior in mysql Connection Pools

const mysql=require(mysql);const config = { host: '127.0.0.1', user: 'root', password:', database: test, connectionLimit:10}const pool = mysql.createPool(config);letstrQuery='SELECT* FROM `test';// g ...

2 years ago

2 answers
120 views
0
Vue packages version mismatch error in vue create

If you enter vue create, you will receive the following error. mac:vue-nuxt hogehoge $vue create my-app/Users/hogehoge/.nodebrew/node/v12.13.1/lib/node_modules/@vue/cli/node_modules/vue-template-compi...

2 years ago

2 answers
119 views
0
How to Smartly Store the Final Results of Promise in a Variable in javascript

aPromise.then(function taskA(value){ // task A ~ some kind of action ~}).then(function taskB(value){ // task B // The value of taskB is the final result. // I want to store the value of taskB for this...

2 years ago

1 answers
115 views
0
TypeScript2+Webpack3 works when installing the same library as a normal module, but fails when installing @types type definition only

I'm trying to create an application using TypeScript2+Webpack3 that uses an external library (module), and I'm going to talk about a certain library ALibrary A itself can be successfully built by inst...

« - 38 - »

© 2024 OneMinuteCode. All rights reserved.