Preface:
Detailed introduction:
practise://String let str = "hello js"; console.log(str.toString); //Print: hello js console.log(str.length); //Print: 8 console.log(str.substr(1,3));//Method: Split and print the string:ell console.log(str.split(' ')); //Method: print by grouping according to specified parameters ['hello' 'js'] //Number let num = 123; console.log(!isNaN(num)); //Judge whether it is NaN, if not, it means it is a value //Boolean let flag = false; if(flag) { //The print result is false console.log("The result is true"); }else{ console.log("The result is false"); } //Undefined let d; let val = `When an object is unassigned, its current value is: ${d}`; console.log(val); //Print: When an object is unassigned, the current value is: undefined //Null let a = null let nul = a; console.log(nul); //Print: null //Object let obj1 = { "name":"Zhang San", "age":24 } //Symbol let sy = Symbol("1"); if(sy == Symbol("1")) { //Print: the result is false console.log("the result is true"); }else{ console.log("The result is false"); } SummarizeThis article ends here. I hope it can be helpful to you. I also hope you can pay more attention to more content on 123WORDPRESS.COM! You may also be interested in:
|
<<: Introduction to SSL certificate installation and deployment steps under Nginx
>>: An article to help you learn CSS3 picture borders
1. RPM package installation steps: 1. Find the co...
What I want to share today is to use native JS to...
Separation of static and dynamic Dynamic requests...
Table of contents 1. Prerequisites 1.1 Supported ...
Table of contents Merge namespaces with the same ...
Some people use these three tags in a perverted wa...
Monday to Sunday time format conversion (Y --- ye...
When starting MongoDB, the prompt is: error while...
1. What is mycat A completely open source large d...
This article will introduce how to use Docker to ...
1. Basic usage examples of float 1. Let's fir...
To master: localStorage, component encapsulation ...
Table of contents EffectList Collection EffectLis...
The difference between CSS3 animation and JS anim...
Today, after the game was restarted, I found that...