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
37 views
0
Move the background image according to the tilt of the smartphoneDo you have a JavaScript library?

I'm sorry for the direct link, but when I access the following site with a smartphone such as iPhone, the background image moves slowly according to the tilt of the smartphone.http://ignition.co/104Ar...

2 years ago

1 answers
45 views
0
I want the function to work with the button in the table created in JavaScript.

I would like to implement a function (insertColumn) on the buttons in the table generated by JavaScript.Currently, there is an error in the program, so please tell me the solution.HTML is the <inpu...

2 years ago

1 answers
54 views
0
How to Debug in java webview→javascript→java in Windows

How do I debug windows efficiently from javascript to java in the javaFX webview?The java that runs from javascript is as follows:window=(JSObject)webArea.getEngine().executeScript(window);// JavaScri...

2 years ago

2 answers
33 views
0
Understanding JavaScript Processing Registration Patterns

I don't know how to implement it, so I'd like to ask you a question.The code below is the code that connects to the websocket server that runs the current time.A function X is registered and executed ...

2 years ago

1 answers
33 views
0
SJIS and BASE64 conversions with javascript

Convert the value (UTF-16) from the screen to SJIS and use it after hash code conversion.Perform a BASE64 conversion and re-use (POST to an external system)Eventually, the value received by the extern...

2 years ago

1 answers
133 views
0
Error on gulp webserver

events.js:85 below;// Unhandled 'error' event ^Error: getaddrinfo ENOTFOUND localhost at errnoException (dns.js:44:10) at GetAddrInfoReqWrap.onlookup [as oncomplete] (dns.js:94:26)When I hit the gulp...

2 years ago

1 answers
33 views
0
How to Cancel Scroll Button

I would like to create an event like an editor, such as the one below that moves the elements by pressing the wheel button on the mouse, but when the scroll bar is out, scrolling takes precedence and ...

2 years ago

1 answers
118 views
0
Modal Screen Display in AngularJS

I'm trying to use AngularJS and BootStrap to display the modal screen.Now $modal.openTypeError Cannot read property 'open' undefinedI get an error.What is the cause?var app=angular.module('app', ['ui....


1 answers
36 views
0
I want to check if the string is well-formed XML in JavaScript.

What I wanted to do was http://mizchi.github.io/md2react/ where I tried to detect and warn you when you entered corrupted HTML using markdown's direct HTML input notation.At first, I used the followin...

2 years ago

1 answers
127 views
0
webextension installation fails

Installing Webextension on Firefox Failsabout:debugging to load a temporary add-on and select manifest.json to display only There was an error during installation:Extension is invalidWhat should I do?...

2 years ago
« - 34 - »

© 2024 OneMinuteCode. All rights reserved.