前端学习Day 1
熟悉BOM/DOM
数据类型之间的转换
数组的几种API调用
传统函数和箭头函数的区别
// document.write("hhh")
// 向控制台输出内容
// BOM/DOM API
// document
// window
// console.log("jjdueu")
// !!a +a a+""
// 01001011 75 parseInt(a, 2)
//arr.push、pop、shift、unshift
//arr = arr.slice(1,4) 包头不包尾 subString同理 mutable imm(重要)arr.slice(1,4) 和arr = arr.slice(1,4) 的区别
// react immutable vue mutable
// arr.splice(1,1) mutable
// document.querySelector('#btn').onclick = clickMe
// function clickMe() {
// alert()
// }
//ES6: arrow function
// const func = arr => console.log(arr)
// func([1,2,3])
// function this: 当前方法的调用者对象
// 箭头函数 this:上一级指向
// const utils = {
// _abcd: 1,
// myAlert: function(str) {
// alert(str)
// },
// myWrite: str => {
// console.log(this);
// document.write(str)
// }
// }
// utils.myWrite('hi there')
// utils.myAlert('this is alert')
// const add = (a,b) => a+b
// console.log(add(5 ,6));