02 2023 档案
摘要:# TypeScript ## 准备 安装node.js ## 安装 ```shell npm install -g typescript ``` ## 查看版本 ```shell tsc -v ``` ==在编写ts代码时,有时虽然没有写错,但是依然有报错信息 如:`无法重新声明块范围变量`,只需
阅读全文
摘要:Object.assign() const a = {name: '小华', age: 19, sex: '女'} const b = {name: '小华', age: 20} const c = Object.assign(a, b) console.log(a) console.log(b)
阅读全文
摘要:初始化样式 body, html, div, p, span, i, b, ul, ol li, input, img, video { padding: 0; margin: 0; box-sizing: border-box; } img { vertical-align: bottom; ob
阅读全文
⬆️
⬇️