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
286 views
0
It's a Google browser, but Mozilla appears on browserName.

var name=navigator.appName;console.log(name)I wrote the javascript code and ran it on Google browser, and it said Mozilla.Is this correct?Is there something wrong?

1 years ago

1 answers
240 views
0
Data retrieved from firebase cannot be displayed in jsx in React

I want to display the data obtained from firebase in react component, but it returns undefined and does not display well.I don't think the data is synchronized well from the perspective of the life cy...


1 answers
280 views
0
Is it possible to run Scripts on pages in different domains using UserScript?

hoge.com/0001.html<html><head></head><body>https://rehoge.com/1234.html</body></html>Is it possible to run a script for rehoge.com/1234.html from the above page?For...

1 years ago

1 answers
471 views
0
Please tell me JavaScript2

I understand that the syntax highlights are that the colors of = and console.log in JavaScript are red or blue.As for the continuation of the previous question, is it correct that you can normally rea...

1 years ago

1 answers
362 views
0
Only button EXECUTE_B appears in the DroidScript.

ボタンTwo buttons.How do I display EXECUTE_A and EXECUTE_B?②Please tell me how to pass the new Date arguments at once.Thank you for your cooperation.(Reference) roDroidScript

1 years ago

1 answers
346 views
0
href="javascript:void(0)" scraping using Selenium in Python

http://bit.sikkou.jp/app/past/pt003/h01/I would like to create a csv file that lists all the data of each district, court, and all the properties on the above site.Google Chrome is unable to retrieve,...


2 answers
409 views
0
Message Handler Does Not Fire When Receiving Data Through WebSocket

What do you want to doYou want JavaScript event handlers to fire when you receive a message with the chat feature that you are creating in the Rails application.Current CodeCurrently, I am using the '...


2 answers
394 views
0
Rails-created apps only generate routing errors in production (AWS)

rails 6.0.2.1ruby 2.6.3amazon linuxmysqlunicornnginxWe are currently creating an Instagram clone app and deploying it to AWS.I would like to make Easy Login and Regular User Logout work in the same wa...


1 answers
126 views
0
Uncheck by scrolling through the page

I have a question about HTML&CSS, JavaScript.I would like to uncheck input when I create a menu for my smartphone in HTML&CSS and JavaScript and scroll through the page.I detected a scroll in JavaScri...

1 years ago

1 answers
82 views
0
How to Read External HTML Files in jest

I would like to conduct a test using the JEST framework.The JEST document writes HTML using document.body.innerHTML as shown below.Is there a way to view an external HTML file without using document.b...

1 years ago
« - 12 - »

© 2024 OneMinuteCode. All rights reserved.