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
109 views
0
I want to delete and page transition by pressing button.

When button is clicked and name='action' is POSTed, DELETE is executed(); but At this time, I would like to transition to home.php at the same time.<button type='submit'name='action'value='delete'o...

2 years ago

1 answers
121 views
0
About JSON Array Storage Using for Statements

We've created an array to get d3.js to read using the for statement.Originally var nodes=[{label: Russian plane shot down 2 people killed, countermeasures against Turkey NHK News, {label: Young digi...

2 years ago

1 answers
34 views
0
Google-hangout

Tell me about the Google Hangput API.I'd like to make a Hangout call to a certain person when I click the button for the elderly to use it.Is it possible to use Google API?If anyone knows, please let ...

2 years ago

3 answers
155 views
0
I'd like to use d3.js to display new articles on Tena bookmarks.

I would like to use tag1216's program on page to collect tags for new bookmarks, display them in Force layout, and link nodes to articles.However, if you try to use the API of the bookmark, cross-orig...

2 years ago

1 answers
105 views
0
hubot error

Hubot Running $yo hubot /root/.nvm/versions/node/v5.2.0/lib/node_modules/yo/node_modules/mkdirp/index.js:90 below err0; ^Error: EACCES:permission denied, mkdir'/root/.config/configstore' at Erro...

2 years ago

1 answers
39 views
0
d3. Understanding the responsive x-axis scale of js

Hello,I am currently making a line graph with d3.js.When you display a line graph on your smartphone, the labels on the x-axis of the date overlap.Even if you specify the number of scales with ticks()...

2 years ago

3 answers
46 views
0
CONVERSION OF STRING USING RECOVERY

I would like to create a program that uses recursion to switch all HTML text (tagged range) to [num]It's my first time using Javascript, so it's hard to achieve my goal.For example, enteringNice to me...

2 years ago

1 answers
103 views
0
I would like to expand the link in the tab screen of jQuery uitab.

Thank you for your help.I am currently creating a screen using jQuery uitab, but I don't know how to load the linked page in the tab screen.We would like to move from clicking Tab A to loading test1.h...

2 years ago

1 answers
34 views
0
JavaScript Prototype

function person(name){ this.name = name; This.prof=function(){ console.log(name:+this.name+\nage:+this.age+\ncolor:+this.color+\nweight:+this.weight); }}person.prototype.color=red;person.prototype.age...

2 years ago

1 answers
82 views
0
I want to display article information obtained from RSS in d3.js

We are currently developing a program that uses HTML and JavaScript to retrieve information about new articles from RSS on news sites, display thumbnails of these articles in force layout using d3.js,...

2 years ago
« - 26 - »

© 2024 OneMinuteCode. All rights reserved.