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
109 views
0
I made a login form with HTml, but I don't know how to sign up and put it in db.

I made a login form with HTml, but I don't know how to sign up and put it in db.How can I make it easier?

2 years ago

1 answers
169 views
0
What should I do if I can't get data due to JavaScript when crawling on Ruby?

I'm practicing web crawling using nokogiri.http://media.daum.net/digital/mobile/#page=1&type=tit_contIn this url, I made a code that outputs url of the article in the red type as shown below.Howev...


1 answers
42 views
0
html grammar in php grammar, how to solve it easily when mixing php grammar in html grammar

I'm practicing how to use php, html, and mysql to sign up for a web page Php Grammar HTml Grammar Mysql Grammar is not that difficult, but like the example below,Combination? It's so hard to mix itSom...

2 years ago

1 answers
87 views
0
Web interface db, please.

For example, if you click the Put Cart button on the web, the value should go into the databaseIs there any other way to go back to the main after going through php to put the data into the shopping b...

2 years ago

1 answers
127 views
0
Related to Instagram API hashtag search

Hello, I'm a student working on a web application project.I'd like to use the hashtag of Instagram API to bring 10 recent photos and show them to users. As of June 1, 2016, the authority of the Instag...

2 years ago

1 answers
99 views
0
I have a question about changing the width attribute of css tag with javascript JavaScript

window.onload=function() { var img = document.querySelector('img') var size=100; img.width=size; img.height=size; img.style.width=size + 'px'; img.style.height=size + 'px';}Hello, I have a question fr...

2 years ago

1 answers
19 views
0
Questions about how to reduce repetition of javascript

​I think the key sentence in LeeGoing's lecture was below*Coding has developed in the direction of reducing repetition and reducing mistakes and server resources(It's not exactly the same sentence, bu...

2 years ago

1 answers
40 views
0
I want to know how to design the js "confirm" window!

We are implementing shopping mall design even though we are not good enough with the winter vacation project.But when I pressed the Put your cart in button, I used JavaScript to open the windowThe abo...

2 years ago

1 answers
87 views
0
Converting date data taken over from client to JavaScript during web development

I need help like ciderDevelop node.js, express as ejs template.In express, render date data as ejs the variable 2016-08-14 12:03:44 of dateTime.You want to convert the dateTime value received from ejs...


1 answers
24 views
0
What is the difference between Object() and newObject()?

I understand that Object() is a constructor function and creates an instance with the new keyword.By the way, even if you call the Object() constructor function directly, it seems to have the same res...

2 years ago
« - 104 - »

© 2024 OneMinuteCode. All rights reserved.