Please, share your tips and tricks related to JavaScript coding. The ones which make code more elegant and faster.
See also:
|
21
|
Please, share your tips and tricks related to JavaScript coding. The ones which make code more elegant and faster. See also: |
|||
|
|
|
|
Check if an object is not empty
Transform the arguments object into an array
JavaScript Minifier / comment remover
Singleton pattern
Factory method pattern
Use Functions as an Object
Listen a property for changes
|
||||||||||
|
|
|
TrickUse the "javascript:" protocol Youc can store js code in a bookmark so in can be used in any Web site you visit. It's called "bookmarklet", and it's a hell of a fun :-) Some bookmarklets for web dev. Javascript to enhance IE If you are like most of the Web designers, you want IE6 (en 5, 4, etc) to die. But there is a way to make him interpret the CSS just like IE7, which is much better. Use conditional comments to load a JS librairy that will tweak his behavior :
Now, you can deal more easily with IE, and not care about the version. IE6 users will have to wait some seconds for JS to load the first visit, that's all. And for those who have IE6 and JS disable, well, they will see a crappy Website but they are masochist anyway ;-) Iterate over Arrays using "for in" I think everybody know the usefullness of the "for in" loop :
Result :
But there is more. Since you can use an object like an associative array, you can process keys and values, just like a foreach loop :
Result :
And since Array are objects too, you can iterate other array the exact same way :
Result :
Remove easily an known element from an array
Best practiceAlways use the second argument parseInt()
Indeed, parseInt() converts a string to int, but will try to guess the numeral system if you omit radix, following the rules :
Most of the time, you will use :
Check the property ownership while using "for in" "for in" iterate other the object properties, but the properties can be ineritated from the object prototype. Since anyone can dynamically alter prototypes, on sensible objects you'd better check if the property is its own before using it :
|
||||
|
|
|
Use of a library such as jQuery |
||
|
|
|
|
prototype extension of native objects for utility methods A couple of my favourites:
|
||
|
|
|
|
Remedial work. Use prototype-based monkey-patching to add new standardised features to old and crappy browsers.
Generally, it's worth being conservative with the prototype patching, because changes you make will affect all scripts on the page, potentially causing bad interactions. Adding arbitrary methods can go wrong when another script tries to use the same member name for another purpose. But fixing up browsers to comply with new standards is generally harmless. |
||
|
|
|
Logical operators tricks
Remove an item by value in an Array object
shuffle the Array
Optional named function arguments
Might not work in FF. See Comments. Floating to integer
Change the primitive value an object with valueOf
New object override
Nested functions and closures
SyntaxErrorRaised when a syntax error occurs while parsing code in
ReferenceErrorRaised when de-referencing an invalid reference.
|
||||
|
|
|
I often see people that doesn't have any clue of how javascript really works. So I wish to point out this document: javascript prototypal inheritance Sorry, too many time I see people call new without actually fully understanding what they are really doing in javascript. |
|||
|
|
|
|
Test if an image has loaded:
Dec to hex / hex to dec: Amazingly people still try to do this computationally:
String repeat: Perhaps not be the fastest way of doing this, but a nifty approach I picked up somewhere:
Get number signature with boolean math operations: Not very useful, but an interesting demonstration of booleans vs. the +/- operators. I've used it in GPS coordinates formating:
Quick & easy namespaces:
Doesn't necessarily have to sit on the string prototype, I just think it's neat for the purposes of this example:
|
|||
|
|
|
|
Solid type-checking function:
Find the maximum or minimum value in an array of numbers:
|
|||
|
|
|
|
String format like function:
//Example
|
|||
|
|