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
30 views
0
String containing double quotation(") gets unexpected identified error

I would like to display the three sentences in the here part of Div without randomly moving the page, but I get an unexpected identified error in the array.Why?<div id=here></div>​ <scr...

2 years ago

1 answers
39 views
0
How to share the same screen in your browser

There is a web service that has the following characteristics in the browser:Please let me know when you know what kind of technology you can use.This is a web service created by an acquaintance, but ...

2 years ago

1 answers
45 views
0
How do I determine which iPad model (Generation 世代, Air/Pro, etc.) I'm looking at the website?

My site is supposed to be viewed on various iPad models.Like the title, we need to determine which iPad we are browsing the website on.Is it iPad Air or Pro? How many generations are there?I would lik...

2 years ago

2 answers
33 views
0
Is there any way to href the A tag that is not specified by ID, class, etc. in JavaScript?

As I am a beginner in JavaScript, I am sorry if this is a basic question.I am currently creating a macro that automates the operation of an existing website.I am currently working on creating automati...

2 years ago

1 answers
134 views
0
New Date() error inside jQuery: Unsupported operation on this object

Inside jQuery, new Date() is giving out the error This is an unsupported operation for this object.I'd like to know how to avoid this.I don't know the reproduction conditions and I can't provide a min...


1 answers
76 views
0
GitHub Pages page transition results in file not found

I made a website based on a tutorial.I have pushed the file to GitHub so that it can be viewed on the web.The site is https://gouehara.github.io/notes-app/.You can browse the index.html page, but if y...

2 years ago

1 answers
32 views
0
How to check the value of a two-dimensional array in a for statement

I want to use the for statement to get the correct or incorrect values of the two-dimensional array, but it doesn't reflect well.I'm a beginner, so I'm doing it while searching online, but I don't kno...

2 years ago

2 answers
105 views
0
Obtain Google calnedar information using a for statement based on data read from CSV

I'm a beginner at js.This may be a rudimentary question, but please forgive me.Read the Google Calendar ID information stored in the CSV and From there, I thought about looping using for minutes to re...

2 years ago

2 answers
86 views
0
Sort properties of Javascript objects

In JavaScript, click constarray= { A—6, B—1, C—3}I would like to sort the array of objects such as in numerical order (higher order) by key.What should I do? constarray= { A—6, C—3, B : 1}

2 years ago

1 answers
35 views
0
Subwind, opens only one (character variable is not evaluated,)

subWin=newArray(0,10);vari = 0;for(i;i<4;i++){ alert(In loop, OP window!=+i); subWin[i]=window.open(tmp.txt, 'sample+i', newwindow); alert(Get>=+subWin[i].name+==+XX+i);}; This second, alert, se...

2 years ago
« - 37 - »

© 2024 OneMinuteCode. All rights reserved.