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
37 views
0
How to Change the Process by Node.js URL

I started studying Node.js on a video site called Dot Installation.I haven't created an environment yet to watch the video.This video http://dotinstall.com/lessons/basic_nodejs/26207shows how to sort ...

2 years ago

1 answers
41 views
0
How to call when the function you want to use for the Render of React is a string

There is a problem with Render processing of React.There's a function called func1 that you call when you render.(Example: return(`<func1/>`).For example, I would like to render the following JS...

2 years ago

3 answers
46 views
0
I want to take over the value of the variable that I counted up when I got JSON for subsequent processing.

Thank you for your continuous support.I am a beginner at javascript.Last time, I learned how to call json more when ajax succeeded. This time, I want to take over the counted-up value in json after le...

2 years ago

2 answers
18 views
0
console.log("hello world") does not appear

Editorvisual studio 2017Windows 10Create with empty htmlConfirmationAfter debacking the following html, hello is not displayed.Verified that javascript is allowed in chrome's Settings. The user agent ...

2 years ago

1 answers
99 views
0
Can the Browser Record Non-Microphone Sound?

I am currently looking for a way to record sounds other than microphones in my browser (mainly chrome).I succeeded in recording from the microphone by using getUserMedia.I would also like to record th...


1 answers
19 views
0
How to return

How to returnI am thinking about the ◆ part of the following two codes.[1] function rangeOfNumber(start,end){ if(start===end){ return [startNum]; } else { var answer = rangeOfNumber(start, end-...

2 years ago

1 answers
68 views
0
a system in which documents, etc., are sent to the management and approved for the system

I am currently thinking of sending documents such as identification cards to management, such as those used in fx services, stock trading, and Uberreats delivery staff apps, and creating an app that o...


1 answers
21 views
0
Understanding How Touchstart Events Work During Some Inertial Scrolls on the Screen

The div tag css is set to foverflow-y:scroll;-webkit-overflow-scrolling:touch; 」 and is set to inertially scroll part of the screen in iOS webview.I create a list or table in the div tag and specify t...

2 years ago

1 answers
41 views
0
Error in variables starting with numbers

I'd like to get a value from https://coinmarketcap.com/ja/api/, but I can't.There is a problem with 24h_volume_usd starting with a number in the source below. Where should I fix it?function getCoin24h...


1 answers
21 views
0
Development of chrome extensions

Would it be possible to create a chrome extension that allows you to upload a video that you upload to YouTube to the site A (the site you own)?

2 years ago
« - 87 - »

© 2024 OneMinuteCode. All rights reserved.