ES6 는 이 정도 면 충분 합 니 다.
2229 단어 JS
ES6
1. const let
ES6 , var : , ' '( )
' ';
ES6 , let const (let const : {} let const
):
let :let , 。
const :const ,
( const , 。 , )
2.
① : , ${}
//ES5
var name = 'lux'
console.log('hello' + name)
//es6 ,
const name = 'lux'
console.log(`hello ${name}`) //hello lux
② (``)
const template = `
hello world
`
③ :
// 1.includes:
const str = 'hahay'
console.log(str.includes('y')) // true
// 2.repeat: n
const str = 'he'
console.log(str.repeat(3)) // 'hehehe'
// , Math.floor(num)
// s.repeat(3.1) s.repeat(3.9) s.repeat(3)
// 3. startsWith endsWith
const str = 'hello world!'
console.log(str.startsWith('hello')) // true
console.log(str.endsWith('!')) // true
3.
① : , 。
② : :
(1) function
(2) return
(3) this
// :
[1,2,3].map(x => x + 1)
// :
[1,2,3].map((function(x){
return x + 1
}).bind(this))
, 。 {} return; :
var people = name => 'hello' + name // name
4. --
①ES5 :
const people = {
name: 'lux',
age: 20
}
const name = people.name
const age = people.age
console.log(name + ' --- ' + age)
② ES6 , 。 , :
//
const people = {
name: 'lux',
age: 20
}
const { name, age } = people
console.log(`${name} --- ${age}`)
//
const color = ['red', 'blue']
const [first, second] = color
console.log(first) //'red'
console.log(second) //'blue'
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
JS 판단 수조 네 가지 실현 방법 상세그러면 본고는 주로 몇 가지 판단 방식과 방식 판단의 원리를 바탕으로 문제가 있는지 토론하고자 한다. 예를 들어 html에 여러 개의 iframe 대상이 있으면 instanceof의 검증 결과가 기대에 부합되지 않을...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.