上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 13 下一页

2018年1月5日

摘要: http://www.ruanyifeng.com/blog/2013/01/javascript_strict_mode.html 阅读全文
posted @ 2018-01-05 11:27 暖暖的心窝子 阅读(124) 评论(0) 推荐(0) 编辑
 
摘要: http://web.jobbole.com/84792/ 阅读全文
posted @ 2018-01-05 11:18 暖暖的心窝子 阅读(149) 评论(0) 推荐(0) 编辑
 
摘要: http://blog.csdn.net/kingliguo/article/details/52637087 阅读全文
posted @ 2018-01-05 11:08 暖暖的心窝子 阅读(290) 评论(0) 推荐(0) 编辑
 
摘要: 异步读取文件 按照js的标准,异步读取一个文本文件的格式如下: 1 2 3 4 5 6 7 8 9 10 11 请注意,test.txt文件必须在当前目录下,且文件编码必须为utf-8 如果我们读取的文件不是文本文件,而是二进制文件,怎么办呢? 下面演示如何读取一个图片文件: 1 2 3 4 5 6 阅读全文
posted @ 2018-01-05 10:41 暖暖的心窝子 阅读(259) 评论(0) 推荐(0) 编辑
 
摘要: os模块,可以用来获取操作系统相关的信息和机器物理信息,例如操作系统平台,内核,cpu架构,内存,cpu,网卡等信息。使用如下所示: const os = require('os'); var dealTime = (seconds)=>{ var seconds = seconds|0; var 阅读全文
posted @ 2018-01-05 10:39 暖暖的心窝子 阅读(199) 评论(0) 推荐(0) 编辑
 
摘要: http://www.ruanyifeng.com/blog/2017/10/bulma.html 阅读全文
posted @ 2018-01-05 09:23 暖暖的心窝子 阅读(278) 评论(0) 推荐(0) 编辑

2018年1月3日

摘要: http://www.runoob.com/w3cnote/getting-started-with-typescript.html 阅读全文
posted @ 2018-01-03 17:06 暖暖的心窝子 阅读(132) 评论(0) 推荐(0) 编辑
 
摘要: http://javascript.ruanyifeng.com/grammar/array.html 阅读全文
posted @ 2018-01-03 16:44 暖暖的心窝子 阅读(133) 评论(0) 推荐(0) 编辑
 
摘要: function deepCopy(p, c) { var c = c || {}; for (var i in p) { if (typeof p[i] 'object') { c[i] = (p[i].constructor Array) ? [] : {}; deepCopy(p[i], c[ 阅读全文
posted @ 2018-01-03 14:43 暖暖的心窝子 阅读(111) 评论(0) 推荐(0) 编辑
 
摘要: http://www.ruanyifeng.com/blog/2010/05/object-oriented_javascript_encapsulation.html 阅读全文
posted @ 2018-01-03 14:28 暖暖的心窝子 阅读(120) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 13 下一页