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
39 views
0
Developed with JavaScript+HTML [Closed]

Do you want to improve this question?Edit this post and update the question to focus on one issueClosed 6 years ago.6 years agoWhat can I do with HTML+JavaScript?Can you make Android apps and iOS apps...

2 years ago

1 answers
82 views
0
The error Uncaught TypeError: Cannot read property '_calendar' of undefined when implementing in fullcalendar-rails gem.

I have implemented it by referring to the code below.https://github.com/siguremon/calendarclone/blob/master/app/assets/javascripts/calendar.jsHowever, due to the old version, the following version is ...


1 answers
99 views
0
Meaning of code with a lot of '?' and ':' in argument parts

I'm a beginner at jquery.I'm very sorry, but could you tell me the meaning below?fields.eq(index+(event.shiftKey?(index>0?-1:0):(index<total?+1:total)) .focus();

2 years ago

1 answers
72 views
0
I want to get the JSON sent from the server to the view in Knockout.js.

Create a json called Employee on the server, pass the data to the screen as shown below, and I'd like to get this data-employee from Knockout.js and display the edited data from Knockout.js in the tab...


3 answers
162 views
0
To use the Developer Tool to find out what elements appear only while the mouse cursor is on

How can I select a dynamically generated DOM when I can't select it with my mouse?For example, in the recent PC version of Twitter, if you hover your mouse over the link to someone else's account name...


1 answers
75 views
0
I want to put out JQuery's accordion menu so that I can ride it instead of slide.

I made an accordion for the sidebar.However, if you display the accordion as it is, the table in the body (the one that says row 1 row 2) will shift to the right.Instead of sliding to the right, I wou...

2 years ago

2 answers
109 views
0
Should I setTimeout when JavaScript(jQuery) is heavy for events such as keydown, keyup, and so on JavaScript(jQuery)

Should I use setTimeout to handle heavy tasks when the following actions occur?$( document ).bind(keydown keyup, function(e){ if(e.type===keydown){ ... // Heavy handling } if(e.type===keyup){ ... //...


1 answers
73 views
0
How to publish files built in github without managing them

Currently, we use bower and cdn.rawgit.com to publish a library of javascripts, such as:https://github.com/59naga/victorica#readmeIn this way, you will manage deliverables (victorica.min.js) on github...


1 answers
83 views
0
java script movement is not reflected

I don't like html, especially those who don't know how to call java scriptIn index.html, <!DOCTYPE HTML><html><head> <metacharset=utf-8> <meta http-equiv=Content-Security-Po...

2 years ago

2 answers
42 views
0
I don't understand the concept of ECMAScript.

I somehow understand that it is the standard specification of javascript.Is javascript implemented for each browser? What is the ECMAScript version of javascript running in a browser these days?For ex...

2 years ago
« - 24 - »

© 2024 OneMinuteCode. All rights reserved.