上一页 1 ··· 241 242 243 244 245 246 247 248 249 ··· 492 下一页
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2019-06-24 01:00 Zhentiw 阅读(2) 评论(0) 推荐(0)
摘要: // Directions // Write a function that returns the number of vowels // used in a string. Vowels are the characters 'a', 'e' // 'i', 'o', and 'u'. // E 阅读全文
posted @ 2019-06-21 23:29 Zhentiw 阅读(179) 评论(0) 推荐(0)
摘要: Requests that aren't stubbed will hit our real backend. To ensure we've stubbed all our routes, we can use the force404 method to send 404s from any u 阅读全文
posted @ 2019-06-21 23:13 Zhentiw 阅读(356) 评论(0) 推荐(0)
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2019-06-21 03:20 Zhentiw 阅读(4) 评论(0) 推荐(0)
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2019-06-20 02:45 Zhentiw 阅读(4) 评论(0) 推荐(0)
摘要: There are two ways to correctly type checks number: When using Number.prototype methods, some of them return String as result: We can see this string: 阅读全文
posted @ 2019-06-18 21:19 Zhentiw 阅读(176) 评论(0) 推荐(0)
摘要: const result = Number('55px'); // isNaN "NaN" console.log(isNaN(result)); // true console.log(isNaN('I am a String!')); // true -- NOT Good console.log(Number.NaN); // safer approach console.log(Nu... 阅读全文
posted @ 2019-06-18 21:12 Zhentiw 阅读(238) 评论(0) 推荐(0)
摘要: What's your expect of the output?: The answer is 'false'. Because: Therefore if we do calculation on Frontend: The result is not correct. The solution 阅读全文
posted @ 2019-06-18 21:04 Zhentiw 阅读(176) 评论(0) 推荐(0)
摘要: Proxy configuration: When we have already fews applications running in the workspace, and we want to add 'api' layer for one applicatrion only, we can 阅读全文
posted @ 2019-06-18 17:36 Zhentiw 阅读(351) 评论(0) 推荐(0)
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2019-06-18 02:34 Zhentiw 阅读(4) 评论(0) 推荐(0)
上一页 1 ··· 241 242 243 244 245 246 247 248 249 ··· 492 下一页