JavaScript, at its base, is a simple language that we continue to evolve with intelligent, flexible patterns.  We've used those patterns in JavaScript frameworks which fuel our web applications today.  Lost in JavaScript framework usage, which many new developers are thrust right into, are some of the very useful JavaScript techniques that make basic tasks possible.  Here are seven of those basics:

1.  String.prototype.replace: /g and /i Flags

One surprise to many JavaScript newbies is that String's replace method doesn'treplace all occurrences of the needle -- just the first occurrence.  Of course seasoned JavaScript vets know that a regular expression and the global flag (/g) need to be used:

// Mistakevar str ="David is an Arsenal fan, which means David is great";
str.replace("David","Darren");// "Darren is an Arsenal fan, which means David is great"// Desired
str.replace(/David/g,"Darren");// "Darren is an Arsenal fan, which means Darren is great"

Another basic logical mistake is not ignoring case when case is not critical to the validation (letters may be uppercase or lowercase), so the /i flag is also useful:

str.replace(/david/gi,"Darren")// "Darren will always be an Arsenal fan, which means Darren will always be great"

Every JavaScript developer has been bitten by each of the flags in the past -- so be sure to use them when when appropriate!

2.  Array-Like Objects and Array.prototype.slice

Array's slice method is principally for grabbing segments of an array.  What many developers don't know is that slice can be used to covert Array-like objects like arguments, NodeLists, and attributes into true arrays of data:

var nodesArr =Array.prototype.slice.call(document.querySelectorAll("div"));// "true" array of DIVsvar argsArr =Array.prototype.slice.call(arguments);// changes arguments to "true" array

You can even clone an array using a simple slice call:

var clone = myArray.slice(0);// naive clone

Array.prototype.slice is an absolute gem in the world of JavaScript, one that even novice JavaScript developers don't know the full potential of.

3.  Array.prototype.sort

The Array sort method is vastly underused and probably a bit more powerful than most developers believe.  Many developers would assume sort would do something like this:

[1,3,9,2].sort();// Returns: [1, 2, 3, 9]

...which is true, but sort has more powerful uses, like this:

[{ name:"Robin Van PurseStrings", age:30},{ name:"Theo Walcott", age:24},{ name:"Bacary Sagna", age:28}].sort(function(obj1, obj2){// Ascending: first age less than the previousreturn obj1.age - obj2.age;});// Returns:  // [//    { name: "Theo Walcott", age: 24 },//    { name: "Bacary Sagna", age: 28  },//    { name: "Robin Van PurseStrings", age: 30 }// ]

You can sort objects by property, not just simple basic items.  In the event that JSON is sent down from the server and objects need to be sorted, keep this in mind!

4.  Array Length for Truncation

There's not a developer out there that hasn't been bitten by JavaScript's pass-objects-by-reference nature.  Oftentimes developers will attempt to empty an array but mistakenly create a new one instead:

var myArray = yourArray =[1,2,3];// :(
myArray =[];// "yourArray" is still [1, 2, 3]// The right way, keeping reference
myArray.length =0;// "yourArray" and "myArray" both []

What these developers probably realize is that objects are passed by reference, so while setting myArray to [] does create a new array, other references stay the same! Big mistake! Use array truncation instead.

5.  Array Merging with push

I showed in point 2 that Array's slice and apply can do some cool stuff, so it shouldn't surprise you that other Array methods can do the same trickery.  This time we can merge arrays with the push method:

var mergeTo =[4,5,6],var mergeFrom =[7,8,9];Array.prototype.push.apply(mergeTo, mergeFrom);

mergeTo;// is: [4, 5, 6, 7, 8, 9]

A wonderful example of a lessor-known, simple native method for completing the basic task of array merging.

6. Efficient Feature/Object Property Detection

Oftentimes developers will use the following technique to detect a browser feature:

if(navigator.geolocation){// Do some stuff}

While that works correctly, it isn't always efficient, as that method of object detection can initialize resources in the browser. In the past, the snippet above caused memory leaks in some browsers. The better and more efficient route is checking for a key within an object:

if("geolocation"in navigator){// Do some stuff}

This key check is as simple as it gets and may avoid memory problems. Also note that if the value of a property is falsy, your check will fail despite the key being present.

7. Event preventDefault and stopPropagation

Oftentimes we trigger functionality when action elements like links are clicked. Obviously we don't want the browser to follow the link upon click, so we use our handy JavaScript library's Event.stop method:

$("a.trigger").on("click",function(e){
e.stop();// Do more stuff});

The problem with this lazy method of stopping the event is that not only does it prevent the default action, but it stops propagation of the event, meaning other event listeners for the elements wont fire because they don't know about the event. It's best to simply use preventDefault!

Seasoned JavaScript developers will see this post and say "I knew those," but at one point or another, they got tripped up on some of these points. Be mindful of the little things in JavaScript because they can make a big difference.

http://tech.pro/tutorial/1453/7-javascript-basics-many-developers-aren-t-using-properly

7 JavaScript Basics Many Developers Aren't Using (Properly)【转】的更多相关文章

  1. 《Professional JavaScript for Web Developers》day02

    <Professional JavaScript for Web Developers>day02 1.在HTML中使用JavaScript 1.1 <script>元素 HT ...

  2. 《Professional JavaScript for Web Developers》day01

    <professional JavaScript for Web Developers>day01 1.JavaScript简介 1.1JavaScript简史:略 1.2JavaScri ...

  3. 《Professional JavaScript for Web Developers》day03

    <Professional JavaScript for Web Developers>day03 1.1ECMAScript语法 1.1.1 区分大小写 1.1.2 标识符 按照惯例,E ...

  4. Professional JavaScript for Web Developers 4th Edition

    Professional JavaScript for Web Developers 4th Edition learning notes / 学习笔记 https://github.com/xgqf ...

  5. Best JavaScript Tools for Developers

    JavaScript solves multiple purposes; it helps you to create interactive websites, web applications, ...

  6. Professional JavaScript for Web Developers 3rd Edition ---读书笔记

    1. DOMContentLoaded DOM树构建完成时触发该事件 load 页面加载完毕触发 原生js document.addEventListener('DOMContentLoaded', ...

  7. Translation perface: <<Professional JavaScript for Web Developers, 3rd Edition>>

    It is a huge pitty to breaking translating this book. Sincerly speaking, I am striken by this great ...

  8. JavaScript basics: 2 ways to get child elements with JavaScript

    原文: https://blog.mrfrontend.org/2017/10/2-ways-get-child-elements-javascript/ Along the lines of oth ...

  9. Professional JavaScript for Web Developers P226

    我是这么理解的: (object.getName = object.getName),这条语句在执行结束后,返回的是右操作数object.getName: 但是关键是这个右操作数现在放在哪里 ?  我 ...

随机推荐

  1. HDU 1016 Prime Ring Problem 题解

    Problem Description A ring is compose of n circles as shown in diagram. Put natural number 1, 2, ... ...

  2. Java垃圾回收机制以及内存泄露

    1.Java的内存泄露介绍 首先明白一下内存泄露的概念:内存泄露是指程序执行过程动态分配了内存,可是在程序结束的时候这块内存没有被释放,从而导致这块内存不可用,这就是内存 泄露,重新启动计算机能够解决 ...

  3. 4句代码读取Excel到DataSet(非Excel组件)

    Toxy是继NPOI之后主推的还有一个项目,主要目的是为了解决文档的抽取问题.其支持的格式包括全部docx.xlsx.xls.csv.vcard等. 以下是一个简单但非常实用的样例 ParserCon ...

  4. Android_模拟时钟内时针、分针触摸转动

    最近实现了android里的一个机能,在activity里面画了一个模拟的时针,然后触摸上面的时针跟分针可以实现调时间的功能. 其实,说起原来来还是挺简单的,但是我花了将近一周的时间才全部实现,有点惭 ...

  5. _00019 Storm架构介绍和Storm获取案例(简单的官方网站Java案例)

    博文作者:妳那伊抹微笑 itdog8 地址链接 : http://www.itdog8.com(个人链接) 博客地址:http://blog.csdn.net/u012185296 博文标题:_000 ...

  6. The Swift Programming Language 中国版

    iSwifting社会的 Swift 兴趣交流群:303868520 iOS 微信公众账号:iOSDevTip Swift 微信公众账号:SwiftDev iSwifting社区 假设你认为这个项目不 ...

  7. codeforece Round#311 BCDE

    B题 给我们n,m ,  m表示茶壶的容量 接下来2*n个数字,表示茶杯的容量,将这些茶杯分给n个男孩和n个女孩 可以倒x毫升的茶水给每个女孩,那么就要倒2x毫升的茶水给男孩,当然了,茶杯要装的下,且 ...

  8. Java EE (8) -- Java EE Patterns

    Java EE 模式目录由以下三个层组成: –     整合层(4) –     业务层(9) –     表示层(8) 涉及 Java EE 平台代码与其它类型应用程序或遗留系统的集成: 服务激活器 ...

  9. DevExpress控件中LayoutControl的使用

    原文:DevExpress控件中LayoutControl的使用 C#开发中,软件布局设计,主要用TableLayoutPanel能很好地支持缩放功能,对自身的Label.TextBox等控件支持的很 ...

  10. 【剑指offer】打印单列表从尾部到头部

    转载请注明出处:http://blog.csdn.net/ns_code/article/details/25028525 剑指offer上的第五题,在九度OJ上測试通过. 时间限制:1 秒 内存限制 ...