Blogger Information
Blog 11
fans 0
comment 0
visits 3126
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
函数类型和数据类型
至亲难忘
Original
217 people have browsed it
函数类型
  1. <script>
  2. // 命名函数
  3. function sum(a,b){
  4. return `${a}+${b} = ${a+b}`;
  5. }
  6. console.log(sum(4,5));

命名函数

  1. // 匿名函数
  2. const sum1=function(a,b){
  3. return `${a} + ${b} = ${a+b}`;
  4. }
  5. console.log(sum1(10,13));

匿名函数

  1. // 箭头函数
  2. let sum2 =(a,b)=>{
  3. return `${a} + ${b} = ${a+b}`;
  4. }
  5. console.log(sum2(7,8));

箭头函数

  1. // 立即执行函数
  2. let promptly = (function (a,b) {
  3. return `${a} + ${b} = ${a+b}`;
  4. })(34,56);
  5. console.log(promptly);

立即执行函数

数据类型
  1. // Number类型
  2. console.log(3.1415926 ,typeof 3.1415926);

数字型

  1. // String类型
  2. console.log(`你好!朱老师`, typeof `你好!朱老师`);

字符串类型

  1. // 布尔类型
  2. console.log(false,typeof false);

布尔类型

  1. // 空
  2. console.log(null,typeof null);

空

  1. // undefined
  2. let un= (a,b)=>{return `${a} + ${b} = ${a+b}`;}
  3. console.log(un());

undefined

引用类型
  1. // 数组
  2. const arr=[1,2,3,`法外狂徒`,`张三`];
  3. console.log(Array.isArray(arr));//判断是否是数组,返回false或true

数组

  1. // 对象
  2. let username={
  3. id:1,
  4. username:`张三`,
  5. sex:`男`,
  6. 'my email': '738925263@qq.com'
  7. }
  8. // 合法属性可以用"."来访问
  9. console.log(username.username);

合法属性

  1. // 非法标识符用['key(键)']的方式访问
  2. console.log(username['sex']);

非法标识符

  1. // 封装对象,这个经常用到\
  2. user={
  3. id:1,
  4. username:`张三`,
  5. sex:`男`,
  6. 'my email': '738925263@qq.com',
  7. show:function(){
  8. return `id=${this.id},'sex'=${this.sex}`
  9. }
  10. }
  11. console.log(user.show());

封装对象

  1. // 函数
  2. let fn = function(){ }
  3. // 添加属性
  4. fn.num= 3.1415926
  5. console.dir(fn.num);

添加属性

  1. // 添加方法
  2. fn.greet=function(name){
  3. return '你好'+ name;
  4. }
  5. console.log(fn.greet('张三'));
  6. </script>

添加方法

Correcting teacher:PHPzPHPz

Correction status:qualified

Teacher's comments:很详细,继续加油
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post