<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>ES6基础知识</title>
</head>
<body>
<script type="text/javascript">
const person = {
name:'peter',
age:28
};
person.age = 30; //正确
//错误
person = {
name: 'mike',
age:20
};
const colors = ["red","green","blue"];
colors[0] = 'yellow'; //正确
colors = ["black","white"]; //错误
</script>
</body>
</html>vue-前端第18章es602.html
原创
©著作权归作者所有:来自51CTO博客作者虾米大王的原创作品,请联系作者获取转载授权,否则将追究法律责任
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
Vue-角色管理
Vue-角色管理
数据 表单 封装 -
vue-封装菜单组件
vue-封装菜单组件
ide 封装 后台管理 -
vue-前端第18章es615.html
【代码】vue-前端第18章es615.html。
vue.js html ES6 -
vue-前端第18章es612.html
【代码】vue-前端第18章es612.html。
javascript 前端 html ES6 -
vue-前端第18章es601.html
【代码】vue-前端第18章es601.html。
javascript 前端 vue.js html i++ -
vue-前端第18章es603.html
【代码】vue-前端第18章es603.html。
javascript 前端 html ES6 i++ -
vue-前端第18章es607.html
【代码】vue-前端第18章es607.html。
vue.js html Math ES6 -
vue-前端第18章es605.html
【代码】vue-前端第18章es605.html。
javascript 前端 html ES6 -
vue-前端第18章es610.html
【代码】vue-前端第18章es610.html。
javascript 前端 html ES6 -
vue-前端第18章es609.html
【代码】vue-前端第18章es609.html。
javascript 前端 vue.js html ES6 -
vue-前端第18章es606.html
【代码】vue-前端第18章es606.html。
javascript 前端 vue.js html ES6 -
vue-前端第18章es608.html
【代码】vue-前端第18章es608.html。
vue.js html javascript ES6 -
vue-前端第18章es604.html
【代码】vue-前端第18章es604.html。
javascript 前端 html ES6 -
vue-前端第18章es611.html
【代码】vue-前端第18章es611.html。
javascript 前端 vue.js html ES6 -
vue-前端第18章es614.js
【代码】vue-前端第18章es614.js。
javascript 前端 vue.js -
vue-案例教程第3章18.html
【代码】vue-案例教程第3章18.html。
javascript 前端 java html Pascal -
vue-案例教程第2章18.html
【代码】vue-案例教程第2章18.html。
javascript 前端 vue.js html -
vue-前端第1章basic02.html
【代码】vue-前端第1章basic02.html。
vue.js javascript 前端 html sed
















