小测验题目及答案1 What is printed in the console?12345var foo = function foo() { console.log(foo === foo); };foo();// true
2 What does the above1234567 function aaa() { return ...
阅读全文…
hexo命令
简写新建文章1$ hexo n "My New Post"==hexo new "My New Post"
详细信息: Writing
启动服务预览1$ hexo s == hexo server
详细信息: Server
生成1$ hexo g == hexo generate
详细信息: Generating
部署1$ hexo d == hexo deploy
详细信息:...
阅读全文…