javascript
ljs_coding
这个作者很懒,什么都没留下…
展开
-
CodeWars Weekly Challenge 1
CodeWars Weekly Challenge 11 问题描述Create a function which answers the question “Are you playing banjo?”.If your name starts with the letter “R” or lower case “r”, you are playing banjo!The function t...原创 2019-01-13 11:07:58 · 591 阅读 · 0 评论 -
【JavaScript高级】贪吃蛇
面向对象的贪吃蛇实现1 工具对象(Tools.js)因为要随机生成食物,所以先将生成min-max范围内随机整数的方法提取出来。randomNum属性就是生成的随机数。function Tools(min,max){ min = Math.ceil(min); max = Math.floor(max); this.randomNum=Math.floor(Math....原创 2019-03-26 13:51:54 · 194 阅读 · 0 评论 -
JavaScript数组
数组方法合集 参考 https://juejin.im/post/5b0903b26fb9a07a9d70c7e0原创 2019-08-27 16:03:37 · 178 阅读 · 0 评论