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
70 views
0
How to put values in html into variables with code .gs

I created a select box in index.html that I created in Google Apps Script.When I select a county name, I want to put that value in a variable in code .gs, but I don't know how to get it and how to use...


1 answers
72 views
0
GoogleAppsScript cannot be placed as an admin in a spreadsheet

[Current situation] If you select GoogleAppsScript as Published -- > Place as Admin -- > Update Webstore Item Draft, you will also receive an error.It should be set up as shown in the attachment...


1 answers
139 views
0
JavaScript click event collides with ASP validation

ASP.NET supports double transmission, but the validation and JS click events collide, so I can't reach the event handler...aspx<asp: ImageButton ID=imgUpdate runat=server CauseValidation=false OnCl...

2 years ago

1 answers
93 views
0
Monaca fails to launch mailer for iOS only

After pressing the HTML button, I am trying to launch the mailer using JavaScript.I managed to boot it on Android after seeing the sample.However, I am worried that it doesn't work well on iOS.The mod...


3 answers
97 views
0
Secure communication method between smartphone application and API

I'm developing an Android app and using Ajax communication during startup.Hit the API on the server and retrieve the JSON output from the API.Trying to process information.At this time, the API placed...

2 years ago

1 answers
96 views
0
C# ASP.NET Ajax Communication Returns Large HTML

I'm a beginner at MVC.The workspace is local.$.ajax({ type: POST, url: /aaa/bbb, data: {selectService:sendId}, success:function(msg){ alert(msg);... [HttpPost]public string bbb(string selectServi...

2 years ago

1 answers
77 views
0
I want to use the google map API to determine if the radii of the two points overlap.

I would like to use the google map API to display the radius of the two points on the map and return store opening allowed when the circles do not overlap, and store opening not allowed when overlappi...

2 years ago

1 answers
75 views
0
Configuring Rails to Use react-router

I am currently thinking of creating a SPA with Rails as the backend.I would like to control the /user screen below when I log in using the browserHistory of react-router.In other words, whether you ac...


1 answers
74 views
0
To set the background color of the pull-down button to "gradient"

The source code below is in the selected song selection (stop) of the pull-down button.The background color is set to gradation.However, it is currently in a state other than Select (Stop) and pull do...

2 years ago

1 answers
38 views
0
About Digital Clock Alarm Clock

The source code below is a digital alarm clock, but I have a question.In the javascript of the clock, check time says flg=-1, but flg=1 and flg=0 in function changeFlg(){}, so if this number (-1) is z...

2 years ago
« - 23 - »

© 2024 OneMinuteCode. All rights reserved.