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
23 views
0
I want to get the status code from the HTTP header.

Hello Let me ask you a question.Is it possible to get the status code from the HTTP header?The language is javascript.

2 years ago

1 answers
43 views
0
Unable to load json and csv files in d3.js

Currently, I am thinking of implementing the force model using d3.js and implementing sources from various sites in a local environment, but both chrome and IE are stuck in cross-domain constraints an...

2 years ago

2 answers
42 views
0
Iframe DOMContentLoaded Does Not Fire

■ Event Create iframe dynamically and Add DOMContentLoaded to addEventListener, but No event occurs when iframe src destination DOM read is complete.■ Coding var parent_obj= document.getElementById(to...

2 years ago

2 answers
92 views
0
How do I debug CLI applications when implementing them in javascript?

There is a project that creates a javascript application that completes within the CLI. CLI.I plan to participate in the project from next week.I am currently reading the source code for that catch-up...

2 years ago

2 answers
32 views
0
How do I use different js to load in production and development environments?

I am using rails 3.2. in development modeapp/assets/javascripts/ajaxzip3.js in production modeapp/assets/javascripts/ajaxzip3-https.jsIs it possible to use ?I use ajaxzip3 zip code search library.This...


1 answers
68 views
0
I want to transfer focus to the next textaera with the Enter key and to the previous textarea with the Backspace key.

It's just as the title says.Let me ask you a question.We have created a textarea directive that corresponds to the focus movement with the Enter and Backspace keys.After typing in textarea, press Ente...


1 answers
24 views
0
javascript How do I change the bold text and bg color of the selected tab?

<script type=text/javascript> functionChangeTab(tabname){ document.getElementById('tab1').style.display='none'; document.getElementById('tab2').style.display='none'; document.getElementById('...

2 years ago

1 answers
22 views
0
How to write a single-digit number of years (2-9 years) in full-width format.

Happy New Year.I have a quick question, The code below is a single digit (2-9 years) represented in full-width letters.Please let me know if there is a more efficient way to write.<SCRIPT type=text...

2 years ago

3 answers
50 views
0
If you rotate the image with HTML5, the edge will be jagged.

If you rotate the image with HTML5, the edge of the diagonal image will be jagged.Is there any way to avoid this jagi?

2 years ago

2 answers
27 views
0
ReplaceChild does not work well.

Excuse me for asking you a question.table= document.createElement(table); ... table creation process... const newTable=table.cloneNode(true); constoldTable= document.getElementById(Table ID); const ...

2 years ago
« - 73 - »

© 2024 OneMinuteCode. All rights reserved.