首页计算机书籍计算机语言《JavaScript Cookbook 2nd Edition》Shelley Powers
haiyy

文档

370

关注

0

好评

0
PDF

《JavaScript Cookbook 2nd Edition》Shelley Powers

阅读 784 下载 0 大小 12.72M 总页数 633 页 2022-11-22 分享
价格:¥ 10.00
下载文档
/ 633
全屏查看
《JavaScript Cookbook 2nd Edition》Shelley Powers
还有 633 页未读 ,您可以 继续阅读 或 下载文档
1、本文档共计 633 页,下载后文档不带www.pdfdz.com水印,支持完整阅读内容。
2、古籍基本都为PDF扫描版,所以文档不支持编辑功能,即不支持文档内文字的复制粘贴。
3、当您付费下载文档后,您只拥有了使用权限,并不意味着购买了版权,文档只能用于自身使用,不得用于其他商业用途(如 [转卖]进行直接盈利或[编辑后售卖]进行间接盈利)。
4、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。
5、如文档内容存在违规,或者侵犯商业秘密、侵犯著作权等,请点击“违规举报”。
JavaScript Cookbook,Second Editionby Shelley PowersCopyright 2015 Shelley Powers.All rights reserved.Printed in the United States of AmericaPublished by O'Reilly Media,Inc.,1005 Gravenstein Highway North,Sebastopol,CA 95472.O'Reilly books y be purchased for educational,business,or sales promotional use.Online editions arealso available for most titles (://safaribooksonline).For more infortion,contact our corporate/institutional sales department:800-998-9938 or corporate@oreilly.Editors:Simon St.Laurent and Brian MacDonaldIndexer:Judy McConvilleProduction Editor:Kara EbrahimCover Designer:Ellie VolckhausenCopyeditor:Jaine KwitynInterior Designer:David FutatoProofreader:Kara Ebrahimlllustrator:Rebecca DerestFebruary 2015:Second EditionRevision History forthe Second Edition:2015-01-23:First releaseSee ://oreilly/catalog/errata.csp?in=9781491901885 for release details.The O'Reilly logo is a registered traderk of O'Reilly Media,Inc.JavaScript Cookbook,Second Edition,thecover ige of a little egret,and related trade dress are traderks of O'Reilly Media,Inc.While the publisher and the author have used good faith efforts to ensure that the infortion and instruc-tions contained in this work are accurate,the publisher and the author disclaim all responsibility for errorsor omissions,including without limitation responsibility for dages resulting from the use ofor relianceon this work.Use of the infortion and instructions contained in this work is at your own risk.If any codesamples or other technology this work contains or describes is subject to open source licenses or the intel-lectual property rights of others,it is your responsibility to ensure that your use thereof complies with suchlicenses and/or rights.ISB:978-1-491-90188-5[LSI]Table of ContentsThe World ofJavaScript.........................................................Classic JavaScript1.The JavaScript Not-So-Simple Building Blocks....................................31.1.Differentiating Between a JavaScript Object,Primitive,and Literal31.2.Extracting a List from a String71.3.Checking for an Existing,Nonempty String101.4.Inserting Special Characters141.5.Replacing Patterns with New Strings161.6.Finding and Highlighting All Instances of a Pattern181.7.Swapping Words in a String Using Capturing Parentheses221.8.Replacing HTML Tags with Named Entities251.9.Converting an ISO 8601 Fortted Date to a Date Object AcceptableFort251.10.Using Function Closures with Timers291.11.Tracking Elapsed Time311.12.Converting a Decil to a Hexadecil Value321.13.Summing All Numbers in a Table Column331.14.Converting Between Degrees and Radians361.15.Find the Radius and Center of a Circle to Fit Within a Page Element371.16.Calculating the Length of a Circular Arc391.17.Using ES6 String Extras Without Leaving Users in the Dirt402.JavaScript Arrays..…432.1.Searching Through an Array432.2.Flattening a Two-Dimensional Array with concat()and apply()452.3.Removing or Replacing Array Elements462.4.Extracting a Portion of an Array48
返回顶部