suyan
suyan
````html 第一次使用自编译的 Vue .text { font-size: 40px; text-align: center; color: #add; } .content { margin-top: 30px; font-size: 30px; text-align: center; } {{ message }} {{ content }} const CONTENTS =...
packages - core - observer - runtime-dom - scheduler
https://github.com/facebook/react-native/commit/3ac3749ac37bf5f202eab535528f324461029366#diff-0b161cb06747782c515275d84ec94b14
https://github.com/pod4g/tool/wiki/%E7%A7%BB%E5%8A%A8%E7%AB%AF%E6%BB%9A%E5%8A%A8%E7%A9%BF%E9%80%8F%E9%97%AE%E9%A2%98
工具
https://www.xbeibeix.com/api/bilibili.php B站视频下载
设计师
插画: https://iradesign.io/ 头像 https://getavataaars.com/?accessoriesType=Kurt
# 第一期 lodash 库介绍
V8
https://v8.js.cn/blog/cost-of-javascript-2019/ https://medium.com/dailyjs/understanding-v8s-bytecode-317d46c94775 https://docs.google.com/presentation/d/1HgDDXBYqCJNasBKBDf9szap1j4q4wnSHhOYpaNy5mHU/edit#slide=id.ge6c11678f_0_13 https://v8.dev/docs p01-ck01.epc.baidu.com:8223/video/courseinfo/
find
```` let x = 'outer value'; (function() { // start TDZ for x console.log(x); let x = 'inner value'; // declaration ends TDZ for x }()); ````