上一页 1 ··· 439 440 441 442 443 444 445 446 447 ··· 494 下一页
摘要: In this lesson we'll learn shorthands for common character classes as well as their negated forms. var str = `Afewserg, %8392 ?AWE`; var regex = /[a-z 阅读全文
posted @ 2016-02-01 03:22 Zhentiw 阅读(172) 评论(0) 推荐(0)
摘要: Regular Expression Character Classes define a group of characters we can use in conjunction with quantifiers. var str = `cat bat mat Hat 0at ?at`; var 阅读全文
posted @ 2016-02-01 03:14 Zhentiw 阅读(184) 评论(0) 推荐(0)
摘要: Regular Expression Quantifiers allow us to identify a repeating sequence of characters of minimum and maximum lengths. In this lesson we'll use Regula 阅读全文
posted @ 2016-02-01 03:07 Zhentiw 阅读(227) 评论(0) 推荐(0)
摘要: The simplest use of Regular Expressions is to find a plain text pattern. In this lesson we'll look at at finding plain text patterns as well as using 阅读全文
posted @ 2016-02-01 02:48 Zhentiw 阅读(251) 评论(0) 推荐(0)
摘要: Three methods to preform redirection in browser: widnow.location.href window.location.assign window.location.replace 1 & 2, they are pretty much the s 阅读全文
posted @ 2016-01-31 17:51 Zhentiw 阅读(281) 评论(0) 推荐(0)
摘要: Learn how to avoid the boilerplate of passing the props down the intermediate components by introducing more container components. Code to be refactor 阅读全文
posted @ 2016-01-29 16:56 Zhentiw 阅读(282) 评论(0) 推荐(0)
摘要: var str = "Is this This?"; //var regex = new RegExp("is", "gi"); var regex = /is/gi; //console.log(regex.test(str)); console.log(regex.exec(str)); //[ 阅读全文
posted @ 2016-01-29 05:15 Zhentiw 阅读(191) 评论(0) 推荐(0)
摘要: Local Storage is a native JavaScript Web API that makes it easy to store and persist data (as key-value pairs) in the Browser. In this lesson, we'll w 阅读全文
posted @ 2016-01-27 21:44 Zhentiw 阅读(166) 评论(0) 推荐(0)
摘要: JSON (JavaScript Object Notation) is a standard method to serialize JavaScript objects and is commonly used to transfer data from the server to the br 阅读全文
posted @ 2016-01-27 20:31 Zhentiw 阅读(231) 评论(0) 推荐(0)
摘要: Finally, I just noticed that the to-do app component doesn't actually have to be a class. I can turn it into a function. I prefer to-do that when poss 阅读全文
posted @ 2016-01-27 20:18 Zhentiw 阅读(202) 评论(0) 推荐(0)
上一页 1 ··· 439 440 441 442 443 444 445 446 447 ··· 494 下一页