Table of Contents
Article directory
JavaScript running environment
Inlay web page
JavaScript file script: .js
JavaScript printing
Print methods
Print level
Writing code IDE platform: Notepad browser
Debugging code
Writing code IDE platform: Visual Studio Code Node.js
Main program
Writing code IDE platform: Linux
Chinese support
Home Web Front-end JS Tutorial Solve the JavaScript runtime environment

Solve the JavaScript runtime environment

Nov 27, 2020 pm 05:07 PM
javascript Operating environment

The

javascript column introduces its operating environment to get a good start.

Solve the JavaScript runtime environment

Related free learning recommendations: javascript(Video)

Article directory

  • File version description
  • JavaScript running environment
    • ##Inlaid web page
    • JavaScript file script :.js
    • JavaScript printing
      • Print method
      • Print level
    • Writing code IDE platform: Notepad browser
      • Debugging code
    • Writing code IDE platform: Visual Studio Code Node.js
      • Main program
      • Debugging code
    • Writing code IDE platform: Linux
    • Chinese support
File Version Description

VersionPublished DateRevised ChapterAuthor0.12018.05.01Writing draftZhong Xin0.22018.05.05Add js variable definitionZhong Xin0.32018.05 .05Add js compilation environmentZhong Xin0.42018.05.11Add js FunctionZhong Xin0.52018.05.14Add destructuring assignmentZhong Xin0.62018.05.19Add function definition and class definitionZhong Xin0.72018.05.27Add class definitionZhong Xin0.82018.06 .09Add time definitionZhong Xin

JavaScript running environment

Inlay web page

Inlay JavaScript in an html, and the inlay tag
JsTest.html

	
		<title> ZX test title </title>
		<script>

		function js_test_html(){  
			alert(&#39;alert ZX test&#39;);
			console.log(&#39;console ZX test&#39;);
			document.write(&#39;document ZX test\n&#39;);
		}  

		js_test_html();

		</script>
	
	
	
Copy after login

displays the effect as shown below.
Solve the JavaScript runtime environment
Solve the JavaScript runtime environment

JavaScript file script: .js

将js代码写入一个js文件中,然后通过html调用这个脚本。
Copy after login
function js_main(){ 
alert('main alert ZX test');
		console.log('main console ZX test');
		document.write('main document ZX test');
} 

js_main();
Copy after login

Insert the js file into the html file

	
		<title> ZX test title </title>
		<script> </script>
	
	
	
Copy after login

The display effect is as follows shown.

Solve the JavaScript runtime environment
Solve the JavaScript runtime environment

JavaScript printing

JavaScript debugging printing is called out by pressing F12 in the browser, and is implemented using the console object in the code.

There are many ways to debug and print JavaScript, including directly printing numbers, arrays, strings, and even structures and classes.
Source code

function js_console_test(){ 
	
	var strtest = "string";
	var chartest = 'A';
	var istest = 3;
	var fpai = 3.14159;
	var arraytest = ["zx",6.626E-34,'B',8];
	
	var stTest = {
		siindex: 1,
		strname: "ZX Test",
		sinum: 2.71828,
		
		functest: function stfunc(){ return true;}
	};

	console.log(strtest);
	console.log(chartest);
	console.log(istest);
	console.log(fpai);
	console.log(arraytest);
	console.log(stTest);
}
Copy after login

Execution result
Solve the JavaScript runtime environment

The console object has a printing level for debugging printing, corresponding to different debugging environments.

Source code

function js_console_level(){ 
	
	console.log("This is log level.");
	console.debug("This is debug level.");
	console.info("This is info level.");
	console.warn("This is warn level.");
	console.error("This is error level.");
}
Copy after login

Execution results
Solve the JavaScript runtime environment

Clicking the position on the right will jump to the code debugging options
Solve the JavaScript runtime environment

Writing code IDE platform: Notepad browser

As long as the browser is installed, you can write js code through Notepad. But to make js run, you must embed js into the html file

When the browser opens the html file, you can execute the js script.

Debugging code

Press F12 in the browser to bring up the debugging environment. You can put breakpoints on the source code, single-step debugging, and view the output. As shown below.
Solve the JavaScript runtime environment

Debug the code on edge, as shown below
Solve the JavaScript runtime environment
Solve the JavaScript runtime environment

Writing code IDE platform: Visual Studio Code Node.js

Using Visual Studio Code is lightweight, and combined with Node.js development, you don’t need to call the browser to debug the code.
Different from browsers, js files can be run independently without being embedded in html, and can be loaded and run through Node.js.

Visual Studio Code download: https://code.visualstudio.com/
Node.js download: https://nodejs.org/en/

After installation, open the specified Folder, as shown in the figure below
Solve the JavaScript runtime environment

Select LF as the encoding format, consistent with Linux, as shown in the figure below
Solve the JavaScript runtime environment

Main program

After installing Node.js, configure the Visual Studio Code environment to debug js code. As shown below.
Solve the JavaScript runtime environment

Debugging code

Controlling the configuration of the debugging code is controlled by the file launch.json. You can configure debugging options in adding configuration options. The launch.json file is placed in the .vscode folder of the project directory, as shown in the figure below.
Solve the JavaScript runtime environment

The editing interface can break points for debugging, and the output information can be seen in the debugging console. The variable bar allows you to observe js variables at all times. As shown below.
Solve the JavaScript runtime environment

Writing code IDE platform: Linux

In Linux, JavaScript debugging is supported and nodejs needs to be installed

sudo apt-get install nodejs-legacy nodejs

$ node -v
v4.2.6
Copy after login

Execute JavaScript script

$ node Jsmain.js 
string
A
3
3.14159
[ 'zx', 6.626e-34, 'B', 8 ]
{ siindex: 1,
  strname: 'ZX Test',
  sinum: 2.71828,
  functest: [Function: stfunc] }
Copy after login

Chinese support

The js file is saved in utf-8 mode, otherwise garbled characters will appear, as shown in the figure below.
Solve the JavaScript runtime environment

The above is the detailed content of Solve the JavaScript runtime environment. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to implement an online speech recognition system using WebSocket and JavaScript How to implement an online speech recognition system using WebSocket and JavaScript Dec 17, 2023 pm 02:54 PM

How to use WebSocket and JavaScript to implement an online speech recognition system Introduction: With the continuous development of technology, speech recognition technology has become an important part of the field of artificial intelligence. The online speech recognition system based on WebSocket and JavaScript has the characteristics of low latency, real-time and cross-platform, and has become a widely used solution. This article will introduce how to use WebSocket and JavaScript to implement an online speech recognition system.

WebSocket and JavaScript: key technologies for implementing real-time monitoring systems WebSocket and JavaScript: key technologies for implementing real-time monitoring systems Dec 17, 2023 pm 05:30 PM

WebSocket and JavaScript: Key technologies for realizing real-time monitoring systems Introduction: With the rapid development of Internet technology, real-time monitoring systems have been widely used in various fields. One of the key technologies to achieve real-time monitoring is the combination of WebSocket and JavaScript. This article will introduce the application of WebSocket and JavaScript in real-time monitoring systems, give code examples, and explain their implementation principles in detail. 1. WebSocket technology

How to use JavaScript and WebSocket to implement a real-time online ordering system How to use JavaScript and WebSocket to implement a real-time online ordering system Dec 17, 2023 pm 12:09 PM

Introduction to how to use JavaScript and WebSocket to implement a real-time online ordering system: With the popularity of the Internet and the advancement of technology, more and more restaurants have begun to provide online ordering services. In order to implement a real-time online ordering system, we can use JavaScript and WebSocket technology. WebSocket is a full-duplex communication protocol based on the TCP protocol, which can realize real-time two-way communication between the client and the server. In the real-time online ordering system, when the user selects dishes and places an order

How to implement an online reservation system using WebSocket and JavaScript How to implement an online reservation system using WebSocket and JavaScript Dec 17, 2023 am 09:39 AM

How to use WebSocket and JavaScript to implement an online reservation system. In today's digital era, more and more businesses and services need to provide online reservation functions. It is crucial to implement an efficient and real-time online reservation system. This article will introduce how to use WebSocket and JavaScript to implement an online reservation system, and provide specific code examples. 1. What is WebSocket? WebSocket is a full-duplex method on a single TCP connection.

JavaScript and WebSocket: Building an efficient real-time weather forecasting system JavaScript and WebSocket: Building an efficient real-time weather forecasting system Dec 17, 2023 pm 05:13 PM

JavaScript and WebSocket: Building an efficient real-time weather forecast system Introduction: Today, the accuracy of weather forecasts is of great significance to daily life and decision-making. As technology develops, we can provide more accurate and reliable weather forecasts by obtaining weather data in real time. In this article, we will learn how to use JavaScript and WebSocket technology to build an efficient real-time weather forecast system. This article will demonstrate the implementation process through specific code examples. We

How to use insertBefore in javascript How to use insertBefore in javascript Nov 24, 2023 am 11:56 AM

Usage: In JavaScript, the insertBefore() method is used to insert a new node in the DOM tree. This method requires two parameters: the new node to be inserted and the reference node (that is, the node where the new node will be inserted).

Simple JavaScript Tutorial: How to Get HTTP Status Code Simple JavaScript Tutorial: How to Get HTTP Status Code Jan 05, 2024 pm 06:08 PM

JavaScript tutorial: How to get HTTP status code, specific code examples are required. Preface: In web development, data interaction with the server is often involved. When communicating with the server, we often need to obtain the returned HTTP status code to determine whether the operation is successful, and perform corresponding processing based on different status codes. This article will teach you how to use JavaScript to obtain HTTP status codes and provide some practical code examples. Using XMLHttpRequest

JavaScript and WebSocket: Building an efficient real-time image processing system JavaScript and WebSocket: Building an efficient real-time image processing system Dec 17, 2023 am 08:41 AM

JavaScript is a programming language widely used in web development, while WebSocket is a network protocol used for real-time communication. Combining the powerful functions of the two, we can create an efficient real-time image processing system. This article will introduce how to implement this system using JavaScript and WebSocket, and provide specific code examples. First, we need to clarify the requirements and goals of the real-time image processing system. Suppose we have a camera device that can collect real-time image data

See all articles