码迷,mamicode.com
首页 > 其他好文 > 详细

ES6 字符串、数值与布尔值、函数参数的解构赋值

时间:2020-03-24 23:03:12      阅读:94      评论:0      收藏:0      [点我收藏+]

标签:name   数组   数值   eof   参数   span   mic   split   let   

const str="hello world";
const [a,b,...oth]=str;

技术图片

 

 

字符串分割为数组的三种方法:

const str="hello world";
const [...str1]=str;
const str2=[...str];
const str3=str.split("");

技术图片

 

 

提取字符串的属性和方法:

const str="hello world";
const {length,split}=str;

技术图片

 

 

 数值与布尔值的解构赋值:

在对数值或者布尔值结构赋值时,会转成它的包装对象

const {valueOf}=1;
const {toString}=true;

//取别名
const {valueOf:vo}=1;
const {toString:ts}=true;

技术图片

 

 

函数参数的解构赋值:

function swap([a,b]){
    return [b,a];
}
let arr=[1,2];
arr=swap(arr);

技术图片

 

 

function getInfo({
    name,
    age,
    friend1="cyy1",
    friend2="cyy2"
}){
    console.log(name);
    console.log(age);
    console.log(friend1);
    console.log(friend2);
}

//无序传入参数
var obj={
    age:18,
    name:"cyy"    
}
getInfo(obj);

技术图片

 

ES6 字符串、数值与布尔值、函数参数的解构赋值

标签:name   数组   数值   eof   参数   span   mic   split   let   

原文地址:https://www.cnblogs.com/chenyingying0/p/12562757.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!