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
58 views
0
Regular Expression Questions

About regular expressions.(y|yes|yes|ok|ok)I only want it to be true when only is entered.I don't want the year to be true.Currently, we are looking to see if any of the above words are included in th...


1 answers
37 views
0
I want to tap and copy the text in the alert.

Thank you for your help.I am creating a mobile app with Monaca.If an error occurs in the app, Error indicating alert(err) At this time, double tap or long tap the sentence displayed in the alert.I'd l...

2 years ago

1 answers
118 views
0
How to prevent leakage of consumerKey, consumerSecret of Evernote API

Using monaca, we are developing Evernote apps for smartphones based on HTML5+Javascript.In order to communicate with Evernote's server, OAuth authentication is required using the key (consumerKey, con...


1 answers
52 views
0
Is the Arrow function of es6 the same as the normal function?

const Message=props=>div>{props.msg}</div>and function Message(props){ return( <div>{props.msg}</div> )}Is the same?Can I check somewhere?

2 years ago

1 answers
71 views
0
Swiper.js Collapse Slider Layout

What do you want to doAs shown in the capture below, the active image of the slider is displayed at the center, and the images of the front and rear elements adjacent to the active image are displayed...

2 years ago

1 answers
30 views
0
How JavaScript Uses Caesar Cryptography in Mixed Japanese-English Strings String

I asked you a question because I couldn't use JavaScript to shift Japanese.Although the following code can be used to make English uppercase and lowercase characters, we are looking for a way to use J...

2 years ago

1 answers
28 views
0
Iframe element cannot be retrieved from eventListener load

If you set the event listener in load, getElementsByTagName will not take the iframe element.What should I do?iframeDoc is a global variable.window.addEventListener('load', async function(){ let ifram...

2 years ago

1 answers
75 views
0
Obtain URL after javascript execution

There is an HTML+Javascript page.On this page, videos are played with a video tag, but the URL of the video is set to the video tag by running javascript.I would like to get the URL that will be set i...

2 years ago

1 answers
76 views
0
acquisition of Amazon prices

http://www.amazon.co.jp/dp/4822242633 for the individual Amazon product page.I think there are many ways to extract only the price of the product by using , but how will you achieve this?I would appre...

2 years ago

2 answers
46 views
0
Is there a solution if the SetAttribute of GetElementById does not work?

https://www.paypal.com/myaccount/transfer/buyI just type characters in the ID element text box.webBrowser1.Document.GetElementById(recipient).SetAttribute(value, test@mail);With the above code, you ca...

2 years ago
« - 45 - »

© 2024 OneMinuteCode. All rights reserved.