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
Understanding Input Events for Multiple IDs

I'm creating a code that displays alerts when non-Hiragana is entered into a particular input of the form, but I'm a beginner, so I'm stuttering.The code below seems to work as desired, but what shoul...

2 years ago

1 answers
80 views
0
Control Home Buttons with Hybrid Apps

I am currently developing a hybrid app with monaca.I want to stop going back to the platform when the home button of the terminal is pressed.I don't want to close the app, I want to leave it as it is....

2 years ago

1 answers
71 views
0
I want to keep the image attached when I zoom in or out.

I want to make the spacing between the images the same when zooming in and out of the images connected vertically and horizontally, but it doesn't work.I was able to write a program to zoom in and out...

2 years ago

2 answers
58 views
0
About JavaScript console.log

As for js, I am not good at taking out values as I expected when displaying objects and arrays in console.log.For example, if there is an array called test and the following data is displayed in conco...

2 years ago

1 answers
119 views
0
Save the image to any directory in FILEAPI

I am studying FILEAPI at Monaca, but sometimes I cannot implement it even if I look at the documents on the website.https://docs.monaca.io/ja/reference/cordova_6.2/file/In this document, I am studying...


2 answers
42 views
0
I want the title of the news to be displayed within 52 bytes.

if(strlen($item->T03_PROMOTION_TITLE)>31) echo mb_substr($item->T03_PROMOTION_TITLE, 0,26, UTF8); else echo $item->T03_PROMOTION_TITLE;?>>>>> <div class=bs_font16 el...

2 years ago

1 answers
68 views
0
I want to retrieve and display the value I entered

<textarea name=id=content cols=30 rows=10 placeholder=test>/textarea> <input type=text name=id=name cols=30 rows=10 placeholder=name>I am thinking of retrieving the information I enter...

2 years ago

1 answers
159 views
0
Is there a way to minimize or hide the screen when it is loaded?

■ QuestionsI'm very sorry for the rough question, but About the HTML file that was transitioned in the HTTP request.Is it possible to minimize or hide the screen when loading?■How to try so far ·Minim...


2 answers
41 views
0
Why can't you initialize a slide show from elements generated and applied within JS without delaying the processing with setTimeout?

We are trying to implement the process of initializing a slide show (bxSlider) for that structure after appending a dynamically created element.At this time, I tried to initialize the slide show with ...

2 years ago

4 answers
23 views
0
I want to delete the javascript if there is a match.

[{ id: 1, data: hoge},{ id : 3, data: hogehogehoge},{ id: 4, data: fugafuga}];If there is such data, for example, would it be possible to delete the id:3 data?a=[{ id: 1, data: hoge},{ id : 3, data: h...

2 years ago
« - 60 - »

© 2024 OneMinuteCode. All rights reserved.