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
79 views
0
I want to invoke any JavaScript method from Android

I use Android Studio to set up WebView in Java to display any HTML.Therefore, I would like to interconnect Android with JavaScript in HTML.First, for JavaScript→ Android (Java), I succeeded in calling...


1 answers
35 views
0
I want to pick up MP3 tag information on the web.

Thank you for your help.I would like to make a simple music player (MP3 only) with Html5.Tag information included in MP3 (information such as artist name and title)I would like to display it.http://ki...

2 years ago

1 answers
81 views
0
I don't know how to set up javascript that integrates calendar with pulldown.

I am an amateur in my first year of web design.I would appreciate it if you could reply. an answer.I'm currently creating a calendar function that works with pulldown, but it doesn't work.The desired ...

2 years ago

6 answers
54 views
0
How do I make .min files?

Files with .min such as jQuery and Bootstrap are written in a tight package without any space or comment, but how do I create such a file?

2 years ago

1 answers
132 views
0
I want to use getServerSideProps instead of getInitialProps in Next.js+TypeScript, but I don't know how to write it.

I asked the same question in teratail, but after 2 weeks, I still have 0 answers, so I would like to ask you a question.I don't care which way you answer.Also, I will share the progress with both of t...


1 answers
44 views
0
Can you create a background application with javascript?

I'm thinking of developing an alarm application using monaca, but monaca doesn't support background operation.I checked and found that it can be done using the codova plug-in, but is it difficult for ...

2 years ago

1 answers
60 views
0
How to Return to Local from a Web Page

I have a question because I didn't understand the document.If you display a web page in the Monaca app with <a href=URL>, you should open a web page in the app.Is it possible to return to the lo...

2 years ago

3 answers
68 views
0
How to Summarize the Same Process in javascript

How do I summarize the same process in javascript?const but = document.getElementById(but);const trend = document.getElementById(trend);but.addEventListener(click, function(){ if(trend.style.visibilit...

2 years ago

2 answers
32 views
0
Understanding the Behavior of Moment().isValid() at 24:00:00

We are conducting a validation of the date and time in moment().isValid(), but the validation of the date and time at 24:00:00 does not work as expected.//HH (=00~23) is a strict comparison, so true i...

2 years ago

4 answers
27 views
0
I want to determine whether it is String or Array.

I would like to separate the processing according to whether the values in the variables in JavaScript are strings or strings.You don't have to check if the array is exactly a string.var stringOrArray...

2 years ago
« - 43 - »

© 2024 OneMinuteCode. All rights reserved.