JS Set Map练习


题目要求How many languages are there in the countries object file.Use the countries data to find the 10 most spoken languages:题目要求我们写两个函数来统计这个文本中有多少语言,并且找

Javascript-类型转换复习


//String to Intlet num = '10'//第一种let numInt = parseInt(num)console.log(numInt);//第二种let numInt2 = Number(num);console.log(numInt2);//第三种let n

Common JS规范


Common JS规范模块就是一个js文件,在模块内部任何变量或其他对象都是私有的,不会暴露给外部模块。在CommonJS模块化规范中,在模块内部定义了一个module对象,module对象内部存储了当前模块的基本信息,同时module对象中有一个属性名为exports,exports用来指定需要向

Javascript-对象序列化


const stu1 = { name: "xiaoming", age: 18, friend: { name: "mike", age: 17, },};const stu1_json = JSON.stringify(stu1); /

Javascript-面向对象


Javascript 面向对象(OOP)语法class 类名 { constructor(){ }}举例://Person类专门用来创建人的对象class Person { constructor(name,age,hooby){ this.name = name;

Javascript-三种包装对象


let num = 10; console.log(typeof num.toString()); // string let str = "hello world"; console.log(str.split(" &quo

Javascript-对象拷贝


两种对象拷贝 let stu = { name: "meow", age: 17, friend: { name: "mike",

Javascript-原始类型和引用类型


//原始类型 let addr_name = "beijing"; let addr_name2 = addr_name; addr_name = "jinan"; console.log

JavaScript 错误 - Throw 和 Try to Catch


JavaScript 错误 - Throw 和 Try to Catch以下来自W3CSCHOOLtry 语句使您能够测试代码块中的错误。catch 语句允许您处理错误。throw 语句允许您创建自定义错误。finally 使您能够执行代码,在 try 和 catch 之后,无论结果如何。try和c

js-switch case结构还能写成什么样?


switch case结构function doAction(action) { switch (action) { case '20': return 'enough'; case '10':