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
98 views
0
Unable to autoload constant controller and Uncaught SyntaxError: Unexpected token., compile error during ajax asynchronous communication

This is my first question!We are trying to apply asynchronous communication to the posting function of the posted application currently in production at ruby on rails.The create action uses response_t...


1 answers
144 views
0
How to use an external module in an electron

I'm thinking of using casper.js in the electron.In main.jsrequire('casper');Write and run Cannot find module 'casper' will be displayed as .Can't I use an external module with an electron?Thank you fo...


1 answers
27 views
0
How to Implement a YouTube Embedded Plug-in in the CKEditor

Let me ask you a question.I am using Ckeditor as a CDN and would like to implement the http://ckeditor.com/addon/youtube plug-in.It's not going well.to config.jsCKEDITOR.plugins.addExternal('youtube',...

2 years ago

3 answers
46 views
0
Length does not increase when obj[obj.length] = xx for array

It may be very rudimentary, but I don't understand, so let me ask you a question.If you substitute the length of the array, the number of elements in the array increases.I think the length value will ...

2 years ago

1 answers
97 views
0
About how to display scrollbars

I am creating a hybrid app with OnsenUI and jQuery, but I want to display the scroll bar on a screen like a search list, but I don't know how to do it.The basic structure of the page is as follows:<...


1 answers
26 views
0
Using javascript Prototype

I've been studying javascript lately.I'm trying to modify an existing plug-in.Can I modify the original sauce without fiddling with it?I'm looking for it.I am wondering if I can insert my own action t...

2 years ago

2 answers
92 views
0
Swiper.js Does Not Work on Dynamically Added Elements

I want to implement slides in swiper.js for elements that I dynamically added in jQuery, but it doesn't work.The reason is that it is a process for dynamically added elements, and the optional observe...


1 answers
44 views
0
I want to set the selection state when adding pulldown items (option elements) in jQuery.

Thank you for your help.I have a problem creating a form-related page, so I would like to ask you a question.Enter each item in one form and move to the next page.Then, when you return to the original...

2 years ago

1 answers
26 views
0
How do I check the deep copy? Does the object have different references before and after the copy, so it's true by comparison?

How do I check the deep copy?·Because the reference destinations of objects are different before and after copying, is there any chance that they will be true in comparison·If the values of each prope...

2 years ago

1 answers
67 views
0
How do you write this in JavaScript?

I was looking at Flux's Dispatcher.js source.class Dispatcher <TPayload > { _callbacks:{[key:DispatchToken]:(payload:TPayload)=>void};<TPayload> and _callbacks:{[key:DispatchToken]:(pay...

2 years ago
« - 54 - »

© 2024 OneMinuteCode. All rights reserved.