Skip to content

Instantly share code, notes, and snippets.

@cyio
Created September 22, 2016 06:53
Show Gist options
  • Save cyio/d46d05ee565ce8c3a95c57310b9ccf6c to your computer and use it in GitHub Desktop.
Save cyio/d46d05ee565ce8c3a95c57310b9ccf6c to your computer and use it in GitHub Desktop.
// JS不能实现成员不可变数组
const a = 1
const arr = [a]
console.log(arr)
arr[0] = 2 // 赋值时替换了常量a
console.log(arr)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment