Hidden Features of JavaScript? - Stack Overflow most recent 30 from stackoverflow.com2009-11-09T07:14:47Zhttp://stackoverflow.com/feeds/question/61088http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/61088/hidden-features-of-javascript196Hidden Features of JavaScript?Allain Lalonde2008-09-14T03:12:50Z2009-11-05T19:01:50Z
<p><strong>What "Hidden Features" of JavaScript do you think every programmer should know?</strong></p>
<p>After having seen the excellent quality of the answers to the following questions I thought it was time to ask it for JavaScript.</p>
<ul>
<li><a href="http://stackoverflow.com/questions/9033/">Hidden Features of C#</a></li>
<li><a href="http://stackoverflow.com/questions/15496/">Hidden Features of Java</a></li>
<li><a href="http://stackoverflow.com/questions/54929/">Hidden Features of ASP.NET</a></li>
<li><a href="http://stackoverflow.com/questions/101268/">Hidden Features of Python</a></li>
<li><a href="http://stackoverflow.com/questions/954327/">Hidden Features of HTML</a></li>
<li><a href="http://stackoverflow.com/questions/61401/">Hidden Features of PHP</a></li>
</ul>
<p>Even though JavaScript is arguably the most important Client Side language right now (just ask Google) it's surprising how little most web developers appreciate how powerful it really is.</p>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/61094#61094108Answer by Gulzar for Hidden Features of JavaScript?Gulzar2008-09-14T03:18:53Z2009-09-22T20:29:14Z<p>Functions are first class citizens in JavaScript:</p>
<pre><code>var passFunAndApply = function (fn,x,y,z) { return fn(x,y,z); };
var sum = function(x,y,z) {
return x+y+z;
};
alert( passFunAndApply(sum,3,4,5) ); // 12
</code></pre>
<p><a href="http://www.ibm.com/developerworks/library/wa-javascript.html" rel="nofollow">Functional programming techniques can be used to write elegant javascript</a>.</p>
<p>Particularly, functions can be passed as parameters, e.g. <a href="http://developer.mozilla.org/en/Core%5FJavaScript%5F1.5%5FReference/Objects/Array/filter" rel="nofollow">Array.filter()</a> accepts a callback:</p>
<pre><code>[1, 2, -1].filter(function(element, index, array) { return element > 0 });
// -> [1,2]
</code></pre>
<p>You can also declare a "private" function that only exists within the scope of a specific function:</p>
<pre><code>function PrintName() {
var privateFunction = function() { return "Steve"; };
return privateFunction();
}
</code></pre>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/61097#6109768Answer by Allain Lalonde for Hidden Features of JavaScript?Allain Lalonde2008-09-14T03:22:43Z2008-09-14T04:40:52Z<p><strong>Private Methods</strong></p>
<p>An object can have private methods.</p>
<pre><code>function Person(firstName, lastName) {
this.firstName = firstName;
this.lastName = lastName;
// A private method only visible from within this constructor
function calcFullName() {
return firstName + " " + lastName;
}
// A public method available to everyone
this.sayHello = function () {
alert(calcFullName());
}
}
//Usage:
var person1 = new Person("Bob", "Loblaw");
person1.sayHello();
// This fails since the method is not visible from this scope
alert(person1.calcFullName());
</code></pre>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/61118#6111834Answer by Shog9 for Hidden Features of JavaScript?Shog92008-09-14T04:04:01Z2009-02-08T20:45:03Z<p><strong><code>with</code></strong>. </p>
<p>It's rarely used, and frankly, rarely useful... But, in limited circumstances, it does have its uses.</p>
<p>For instance: object literals are quite handy for quickly setting up properties on a <em>new</em> object. But what if you need to change <em>half</em> of the properties on an existing object?</p>
<pre><code>var user =
{
fname: 'Rocket',
mname: 'Aloysus',
lname: 'Squirrel',
city: 'Fresno',
state: 'California'
};
// ...
with (user)
{
mname = 'J';
city = 'Frostbite Falls';
state = 'Minnesota';
}
</code></pre>
<p>Alan Storm points out that this can be somewhat dangerous: if the object used as context doesn't <em>have</em> one of the properties being assigned to, it will be resolved in the outer scope, possibly creating or overwriting a global variable. This is especially dangerous if you're used to writing code to work with objects where properties with default or empty values are left undefined:</p>
<pre><code>var user =
{
fname: "John",
// mname definition skipped - no middle name
lname: "Doe"
};
with (user)
{
mname = "Q"; // creates / modifies global variable "mname"
}
</code></pre>
<p>Therefore, it is probably a good idea to avoid the use of the <code>with</code> statement for such assignment. </p>
<h3>See also: <a href="http://stackoverflow.com/questions/61552/are-there-legitimate-uses-for-javascripts-with-statement">Are there legitimate uses for JavaScript’s “with” statement?</a></h3>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/61125#6112563Answer by Patrick for Hidden Features of JavaScript?Patrick2008-09-14T04:14:40Z2008-09-14T04:14:40Z<p>Here's one that can save your bacon from time to time:</p>
<pre><code>obj = {a:"test"};
var a = obj.a;
var b = obj["a"];
a == b;
</code></pre>
<p>Some people don't know this and end up with code like this:</p>
<pre><code>var str = "a";
var a = eval("obj." + str);
</code></pre>
<p>Not only is the above easier to read, it's also a lot safer and less likely to invite XSS attacks. For example:</p>
<pre><code>var str = getStrFromGetVars(); //evil user sets getVar to "a; alert("lolz")"
var a = eval("obj." + str); //alert boxes!
</code></pre>
<p>Please keep this in mind when writing your webapps and widgets.</p>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/61129#6112941Answer by spoon16 for Hidden Features of JavaScript?spoon162008-09-14T04:32:49Z2009-04-26T02:44:18Z<p>"<a href="http://codebetter.com/blogs/jeremy.miller/archive/2008/09/08/quot-extension-method-quot-in-javascript.aspx" rel="nofollow">Extension methods in JavaScript</a>" via the prototype property.</p>
<pre><code>Array.prototype.contains = function(value) {
for (var i = 0; i < this.length; i++) {
if (this[i] == value) return true;
}
return false;
}
</code></pre>
<p>This will add a <code>contains</code> method to all <code>Array</code> objects. You can call this method using this syntax </p>
<pre><code>var stringArray = ["foo", "bar", "foobar"];
stringArray.contains("foobar");
</code></pre>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/61158#6115830Answer by CMS for Hidden Features of JavaScript?CMS2008-09-14T06:07:56Z2009-09-25T07:25:18Z<p><strong>Assigning default values to variables</strong></p>
<p>You can use the logical or operator <a href="https://developer.mozilla.org/en/Core%5FJavaScript%5F1.5%5FGuide/Operators/Logical%5FOperators" rel="nofollow"><code>||</code></a> in an assignment expression to provide a default value:</p>
<pre><code>var a = b || c;
</code></pre>
<p>The <code>a</code> variable will get the value of <code>c</code> only if <code>b</code> is <em>falsy</em> (if is <code>null</code>, <code>false</code>, <code>undefined</code>, <code>0</code>, <code>empty string</code>, or <code>NaN</code>), otherwise <code>a</code> will get the value of <code>b</code>.</p>
<p>This is often useful in functions, when you want to give a default value to an argument in case isn't supplied:</p>
<pre><code>function example (arg1) {
arg1 = arg1 || 'default value';
}
</code></pre>
<p><strong>The <code>debugger</code> statement</strong></p>
<p>This is <code>not</code> a JavaScript language feature by itself, this statement doesn't even exists on the ECMAScript Language Specification, but all the JavaScript implementations include it, this statement allows you to put <em>breakpoints programmatically</em> in your code, you can call it just by:</p>
<pre><code>// ...
debugger;
// ...
</code></pre>
<p>And if the debugger is attached, it will break immediately, right on that line.</p>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/61165#611651Answer by Vaibhav for Hidden Features of JavaScript?Vaibhav2008-09-14T06:42:19Z2009-09-22T23:04:47Z<p>It's surprising how many people don't realize that it's object oriented as well.</p>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/61173#6117351Answer by eed3si9n for Hidden Features of JavaScript?eed3si9n2008-09-14T07:02:15Z2008-09-14T07:02:15Z<p><a href="http://developer.mozilla.org/En/Core_JavaScript_1.5_Guide:Block_Statement" rel="nofollow">JavaScript does not have block scope</a> (but it has <a href="http://developer.mozilla.org/en/Core_JavaScript_1.5_Guide/Functions#Function_expressions" rel="nofollow">closure</a> so let's call it even?).</p>
<pre><code>var x = 1;
{
var x = 2;
}
alert(x); // outputs 2
</code></pre>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/61193#6119317Answer by Tyler for Hidden Features of JavaScript?Tyler2008-09-14T07:50:26Z2009-09-22T20:33:27Z<p>How about <strong>closures</strong> in JavaScript (equivalent of anonymous methods in C# v2.0+). You can create a function that creates a function or "expression".</p>
<p>Example of <strong>closures</strong>:</p>
<pre><code>//Takes a function that filters numbers and calls the function on
//it to build up a list of numbers that satisfy the function.
function filter(filterFunction, numbers)
{
var filteredNumbers = [];
for (var index = 0; index < numbers.length; index++)
{
if (filterFunction(numbers[index]) == true)
{
filteredNumbers.push(numbers[index]);
}
}
return filteredNumbers;
}
//Creates a function (closure) that will remember the value "lowerBound"
//that gets passed in and keep a copy of it.
function buildGreaterThanFunction(lowerBound)
{
return function (numberToCheck) {
return (numberToCheck > lowerBound) ? true : false;
};
}
var numbers = [1, 15, 20, 4, 11, 9, 77, 102, 6];
var greaterThan7 = buildGreaterThanFunction(7);
var greaterThan15 = buildGreaterThanFunction(15);
numbers = filter(greaterThan7, numbers);
alert('Greater Than 7: ' + numbers);
numbers = filter(greaterThan15, numbers);
alert('Greater Than 15: ' + numbers);
</code></pre>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/61196#6119617Answer by Tyler for Hidden Features of JavaScript?Tyler2008-09-14T08:16:20Z2008-09-14T08:16:20Z<p>You can also <strong>extend (inherit) classes and override properties/methods</strong> using the prototype chain <strong>spoon16</strong> alluded to.</p>
<p>In the following example we create a class Pet and define some properties. We also override the .toString() method inherited from Object.</p>
<p>After this we create a Dog class which <strong>extends Pet and overrides the .toString()</strong> method again changing it's behavior (polymorphism). In addition we add some other properties to the child class.</p>
<p>After this we check the inheritance chain to show off that Dog is still of type Dog, of type Pet, and of type Object.</p>
<pre><code>// Defines a Pet class constructor
function Pet(name)
{
this.getName = function() { return name; };
this.setName = function(newName) { name = newName; };
}
// Adds the Pet.toString() function for all Pet objects
Pet.prototype.toString = function()
{
return 'This pets name is: ' + this.getName();
};
// end of class Pet
// Define Dog class constructor (Dog : Pet)
function Dog(name, breed)
{
// think Dog : base(name)
Pet.call(this, name);
this.getBreed = function() { return breed; };
}
// this makes Dog.prototype inherit from Pet.prototype
Dog.prototype = new Pet();
// Currently Pet.prototype.constructor
// points to Pet. We want our Dog instances'
// constructor to point to Dog.
Dog.prototype.constructor = Dog;
// Now we override Pet.prototype.toString
Dog.prototype.toString = function()
{
return 'This dogs name is: ' + this.getName() +
', and its breed is: ' + this.getBreed();
};
// end of class Dog
var parrotty = new Pet('Parrotty the Parrot');
var dog = new Dog('Buddy', 'Great Dane');
// test the new toString()
alert(parrotty);
alert(dog);
// Testing instanceof (similar to the `is` operator)
alert('Is dog instance of Dog? ' + (dog instanceof Dog)); //true
alert('Is dog instance of Pet? ' + (dog instanceof Pet)); //true
alert('Is dob instance of Object? ' + (dog instanceof Object)); //true
</code></pre>
<p>Both answers to this question were codes modified from a <a href="http://msdn.microsoft.com/en-us/magazine/cc163419.aspx" rel="nofollow">great MSDN article by Ray Djajadinata.</a></p>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/61260#6126036Answer by VolkerK for Hidden Features of JavaScript?VolkerK2008-09-14T10:48:32Z2008-09-14T10:48:32Z<p>Functions are objects and therefore can have properties.</p>
<pre>
fn = function(x) {
// ...
}
fn.foo = 1;
fn.next = function(y) {
//
}
</pre>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/61545#61545120Answer by Martin Clarke for Hidden Features of JavaScript?Martin Clarke2008-09-14T18:44:34Z2009-09-22T20:27:32Z<p>I could quote most of Douglas Crockford's excellent book
<a href="http://rads.stackoverflow.com/amzn/click/0596517742" rel="nofollow">JavaScript: The Good Parts</a>.</p>
<p><img src="http://ecx.images-amazon.com/images/I/41FUMOfYQoL.%5FBO2,204,203,200%5FPIsitb-sticker-arrow-click,TopRight,35,-76%5FAA240%5FSH20%5FOU01%5F.jpg" alt="alt text" /></p>
<p>But I'll take just one for you, always use === and !== instead of == and !=</p>
<pre><code>alert('' == '0'); //false
alert(0 == ''); // true
alert(0 =='0'); // true
</code></pre>
<p>== is not transitive. If you use === it would give false for
all of these statements as expected.</p>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/61584#615844Answer by Marius for Hidden Features of JavaScript?Marius2008-09-14T19:26:28Z2008-09-14T19:26:28Z<p>Javascript has static variables inside functions:</p>
<pre><code>function someFunction(){
var Static = arguments.callee;
Static.someStaticVariable = (Static.someStaticVariable || 0) + 1;
alert(Static.someStaticVariable);
}
someFunction() //Alerts 1
someFunction() //Alerts 2
someFunction() //Alerts 3
</code></pre>
<p>It also has static variables inside Objects:</p>
<pre><code>function Obj(){
this.Static = arguments.callee;
}
a = new Obj();
a.Static.name = "a";
b = new Obj();
alert(b.Static.name); //Alerts b
</code></pre>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/64404#644044Answer by JW for Hidden Features of JavaScript?JW2008-09-15T16:25:36Z2008-09-15T16:25:36Z<p>"undefined" is undefined. So you can do this:</p>
<pre><code>if (var.field === undefined) ...
</code></pre>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/64912#649120Answer by Vitaly Sharovatov for Hidden Features of JavaScript?Vitaly Sharovatov2008-09-15T17:27:08Z2009-09-22T23:20:32Z<p>As Marius already pointed, you can have public static variables in functions. </p>
<p>I usually use them to create functions that are executed only once, or to cache some complex calculation results.</p>
<p>Here's the example of my old "singleton" approach:</p>
<pre><code>var singleton = function(){
if (typeof arguments.callee.__instance__ == 'undefined') {
arguments.callee.__instance__ = new function(){
//this creates a random private variable.
//this could be a complicated calculation or DOM traversing that takes long
//or anything that needs to be "cached"
var rnd = Math.random();
//just a "public" function showing the private variable value
this.smth = function(){ alert('it is an object with a rand num=' + rnd); };
};
}
return arguments.callee.__instance__;
};
var a = new singleton;
var b = new singleton;
a.smth();
b.smth();
</code></pre>
<p>As you may see, in both cases the constructor is run only once.</p>
<p>For example, I used this approach back in 2004 when I had to
create a modal dialog box with a gray background that
covered the whole page (something like <a href="http://en.wikipedia.org/wiki/Lightbox%5F%28JavaScript%29" rel="nofollow">Lightbox</a>). Internet
Explorer 5.5 and 6 have the highest stacking context for
<select> or <iframe> elements due to their
"windowed" nature; so if the page contained select elements,
the only way to cover them was to create an iframe and
position it "on top" of the page. So the whole script was
quite complex and a little bit slow (it used filter:
expressions to set opacity for the covering iframe). The
"shim" script had only one ".show()" method, which created
the shim only once and cached it in the static variable :)</p>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/64950#649507Answer by Thevs for Hidden Features of JavaScript?Thevs2008-09-15T17:30:41Z2008-09-27T15:19:55Z<p>The way JavaScript works with Date() just excites me!</p>
<pre><code>function isLeapYear(year) {
return (new Date(year, 1, 29, 0, 0).getMonth() != 2);
}
</code></pre>
<p>This is really "hidden feature".</p>
<p>Edit: Removed "?" condition as suggested in comments for politcorrecteness.
Was: ... new Date(year, 1, 29, 0, 0).getMonth() != 2 ? true : false ...
Please look at comments for details.</p>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/65002#650023Answer by Mark Cidade for Hidden Features of JavaScript?Mark Cidade2008-09-15T17:39:23Z2008-09-15T17:39:23Z<p>All functions are actually instances of the built-in <strong>Function</strong> type, which has a constructor that takes a string containing the function definition, so you can actually define functions at run-time by e.g., concatenating strings:</p>
<pre><code>//e.g., createAddFunction("a","b") returns function(a,b) { return a+b; }
function createAddFunction(paramName1, paramName2)
{ return new Function( paramName1, paramName2
,"return "+ paramName1 +" + "+ paramName2 +";");
}
</code></pre>
<p>Also, for user-defined functions, <strong>Function.toString()</strong> returns the function definition as a literal string.</p>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/65028#65028184Answer by Mark Cidade for Hidden Features of JavaScript?Mark Cidade2008-09-15T17:43:14Z2008-09-15T22:24:47Z<p>You don't need to define any parameters for a function. You can just use the function's <strong>arguments</strong> array.</p>
<pre><code>function sum()
{ var retval = 0;
for (int i=0; i < arguments.length; ++i)
{ retval += arguments[i];
}
return retval;
}
sum(1,2,3) //returns 6
</code></pre>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/65064#6506414Answer by Mark Cidade for Hidden Features of JavaScript?Mark Cidade2008-09-15T17:47:02Z2008-09-15T17:47:02Z<p>All objects in Javascript are implemented as hashtables, so their properties can be accessed through the indexer and vice-versa. Also, you can enumerate all the properties using the <strong>for/in</strong> operator:</p>
<pre><code>var x = {a: 0};
x["a"]; //returns 0
x["b"] = 1;
x.b; //returns 1
for (p in x) document.write(p+";"); //writes "a;b;"
</code></pre>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/65124#6512474Answer by Mark Cidade for Hidden Features of JavaScript?Mark Cidade2008-09-15T17:53:54Z2008-11-13T20:12:41Z<p>You can use the <strong>in</strong> operator to check if a value is in a list:</p>
<pre><code>var x = 1;
var y = 3;
var list = {0:0, 1:0, 2:0};
x in list; //true
y in list; //false
1 in list; //true
y in {3:0, 4:0, 5:0}; //true
</code></pre>
<p><strong>(Edit)</strong>: had to change list literals to object literals. See Armin's comment. If you find the object literals too ugly you can combine it with the <a href="#65028" rel="nofollow">paramaterless function tip</a>:</p>
<pre><code>function list()
{ var x = {};
for(var i=0; i < arguments.length; ++i) x[arguments[i]] = 0;
return x
}
5 in list(1,2,3,4,5) //true
</code></pre>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/65415#654158Answer by Sebastian Rittau for Hidden Features of JavaScript?Sebastian Rittau2008-09-15T18:25:27Z2008-09-15T18:25:27Z<p>JavaScript uses a simple object literal:</p>
<pre><code>var x = { intValue: 5, strValue: "foo" };
</code></pre>
<p>This constructs a full-fledged object.</p>
<p>JavaScript uses prototype-based object orientation and provides the ability to extend types at runtime:</p>
<pre><code>String.prototype.doubleLength = function() {
return this.length * 2;
}
alert("foo".doubleLength());
</code></pre>
<p>An object delegates all access to attributes that it doesn't contain itself to its "prototype", another object. This can be used to implement inheritance, but is actually more powerful (even if more cumbersome):</p>
<pre><code>/* "Constructor" */
function foo() {
this.intValue = 5;
}
/* Create the prototype that includes everything
* common to all objects created be the foo function.
*/
foo.prototype = {
method: function() {
alert(this.intValue);
}
}
var f = new foo();
f.method();
</code></pre>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/67614#6761456Answer by qui for Hidden Features of JavaScript?qui2008-09-15T22:27:58Z2009-09-22T20:30:37Z<p>Maybe a little obvious to some...</p>
<p>Install <a href="http://en.wikipedia.org/wiki/Firebug%5F%28Firefox%5Fextension%29" rel="nofollow">Firebug</a> and use console.log("hello"). So much better than using random alert();'s which I remember doing a lot a few years ago.</p>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/68853#68853-3Answer by dysfunctor for Hidden Features of JavaScript?dysfunctor2008-09-16T02:21:14Z2009-09-22T23:23:31Z<p>JavaScript <em>does</em> have block scope! Use <code>with</code> and <a href="http://en.wikipedia.org/wiki/JSON" rel="nofollow">JSON</a>:</p>
<pre><code>function say(x) {document.write("x = '" + x + "'<br/>");}
var x = "outer scope";
with ({x: "inner scope"}) // Local instance of x masks global x
{
x += " modified";
say (x);
}
say(x);
</code></pre>
<p>It produces this output:</p>
<blockquote>
<p>x = 'inner scope modified'<br/>x =
'outer scope'<br/></p>
</blockquote>
<p>:)</p>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/68961#689617Answer by hal10001 for Hidden Features of JavaScript?hal100012008-09-16T02:39:06Z2008-09-16T02:39:06Z<p>One of my favorites is constructor type checking:</p>
<pre><code>function getObjectType( obj ) {
return obj.constructor.name;
}
window.onload = function() {
alert( getObjectType( "Hello World!" ) );
function Cat() {
// some code here...
}
alert( getObjectType( new Cat() ) );
}
</code></pre>
<p>So instead of the tired old [Object object] you often get with the typeof keyword, you can actually get real object types based upon the constructor.</p>
<p>Another one is using variable arguments as a way to "overload" functions. All you are doing is using an expression to detect the number of arguments and returning overloaded output:</p>
<pre><code>function myFunction( message, iteration ) {
if ( arguments.length == 2 ) {
for ( i = 0; i < iteration; i++ ) {
alert( message );
}
} else {
alert( message );
}
}
window.onload = function() {
myFunction( "Hello World!", 3 );
}
</code></pre>
<p>Finally, I would say assignment operator shorthand. I learned this from the source of the jQuery framework... the old way:</p>
<pre><code>var a, b, c, d;
b = a;
c = b;
d = c;
</code></pre>
<p>The new (shorthand) way:</p>
<pre><code>var a, b, c, d;
d = c = b = a;
</code></pre>
<p>Good fun :)</p>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/75844#758442Answer by noah for Hidden Features of JavaScript?noah2008-09-16T19:09:50Z2008-09-16T19:09:50Z<p>This one is super hidden, and only occasionally useful ;-)</p>
<p>You can use the prototype chain to create an object that delegates to another object without changing the original object.</p>
<pre><code>var o1 = { foo: 1, bar: 'abc' };
function f() {}
f.prototype = o1;
o2 = new f();
assert( o2.foo === 1 );
assert( o2.bar === 'abc' );
o2.foo = 2;
o2.baz = true;
assert( o2.foo === 2 );
// o1 is unchanged by assignment to o2
assert( o1.foo === 1 );
assert( o2.baz );
</code></pre>
<p>This only covers 'simple' values on o1. If you modify an array or another object, then the prototype no longer 'protects' the original object. Beware anytime you have an {} or [] in a Class definition/prototype.</p>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/78155#7815514Answer by mattbloojeans for Hidden Features of JavaScript?mattbloojeans2008-09-16T22:54:28Z2009-09-22T20:34:10Z<p>Timestamps in JavaScript:</p>
<pre><code>//Usual Way
var d=new Date();
timestamp=d.getTime();
//Shorter Way
timestamp=(new Date()).getTime();
//Shortest Way
timestamp=+new Date();
</code></pre>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/78290#782904Answer by Jimmy for Hidden Features of JavaScript?Jimmy2008-09-16T23:19:37Z2008-09-16T23:19:37Z<p>Function.toSource():</p>
<pre><code>function x() {
alert("Hello World");
}
eval ("x = " + (x + "").replace(
'Hello World',
'STACK OVERFLOW BWAHAHA"); x("'));
x();
</code></pre>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/104424#10442414Answer by Chris MacDonald for Hidden Features of JavaScript?Chris MacDonald2008-09-19T18:41:28Z2008-09-19T20:53:24Z<p>Private variables with a Public Interface</p>
<p>It uses a neat little trick with a self-calling function definition.
Everything inside the object which is returned is available in the public interface, while everything else is private.</p>
<pre><code>var test = function () {
//private members
var x = 1;
var y = function () {
return x * 2;
};
//public interface
return {
setx : function (newx) {
x = newx;
},
gety : function () {
return y();
}
}
}();
assert(undefined == test.x);
assert(undefined == test.y);
assert(2 == test.gety());
test.setx(5);
assert(10 == test.gety());
</code></pre>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/105603#10560320Answer by Vincent Robert for Hidden Features of JavaScript?Vincent Robert2008-09-19T21:02:48Z2008-09-19T21:02:48Z<p>Methods (or functions) can be called on object that are not of the type they were designed to work with. This is great to call native (fast) methods on custom objects.</p>
<pre><code>var listNodes = document.getElementsByTagName('a');
listNodes.sort(function(a, b){ ... });
</code></pre>
<p>This code crashes because <code>listNodes</code> is not an <code>Array</code></p>
<pre><code>Array.prototype.sort.apply(listNodes, [function(a, b){ ... }]);
</code></pre>
<p>This code works because <code>listNodes</code> defines enough array-like properties (length, [] operator) to be used by <code>sort()</code>.</p>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/109360#10936011Answer by Zach for Hidden Features of JavaScript?Zach2008-09-20T20:56:04Z2008-09-20T20:56:04Z<p>Numbers are also objects. So you can do cool stuff like:</p>
<pre><code>// convert to base 2
(5).toString(2) // returns "101"
// provide built in iteration
Number.prototype.times = function(funct){
if(typeof funct === 'function') {
for(var i = 0;i < Math.floor(this);i++) {
funct(i);
}
}
return this;
}
(5).times(function(i){
string += i+" ";
});
// string now equals "0 1 2 3 4 "
var x = 1000;
x.times(function(i){
document.body.innerHTML += '<p>paragraph #'+i+'</p>';
});
// adds 1000 parapraphs to the document
</code></pre>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/110337#1103375Answer by ianion for Hidden Features of JavaScript?ianion2008-09-21T05:40:50Z2009-09-22T22:56:28Z<p>You can do almost anything between parentheses if you separate statements with commas:</p>
<pre><code>var z = ( x = "can you do crazy things with parenthesis", ( y = x.split(" "), [ y[1], y[0] ].concat( y.slice(2) ) ).join(" ") )
alert(x + "\n" + y + "\n" + z)
</code></pre>
<p>Output:</p>
<pre><code>can you do crazy things with parenthesis
can,you,do,crazy,things,with,parenthesis
you can do crazy things with parenthesis
</code></pre>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/112295#1122958Answer by Rakesh Pai for Hidden Features of JavaScript?Rakesh Pai2008-09-21T21:57:23Z2008-09-21T21:57:23Z<p>The concept of truthy and falsy values. You don't need to do something like</p>
<p>if(someVar === undefined || someVar === null) ...</p>
<p>Simply do:</p>
<p>if(!someVar).</p>
<p>Every value has a corresponding boolean representation.</p>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/114695#1146954Answer by Dan for Hidden Features of JavaScript?Dan2008-09-22T12:54:23Z2008-09-22T12:54:23Z<p>You can execute an object's method on any object, regardless of whether it has that method or not. Of course it might not always work (if the method assumes the object has something it doesn't), but it can be extremely useful. For example:</p>
<pre><code>function(){
arguments.push('foo') // This errors, arguments is not a proper array and has no push method
Array.prototype.push.apply(arguments, ['foo']) // Works!
}
</code></pre>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/115587#1155872Answer by jrockway for Hidden Features of JavaScript?jrockway2008-09-22T15:37:02Z2008-09-22T15:37:02Z<p><a href="http://code.google.com/p/joose-js/" rel="nofollow">Joose</a> is a nice object system if you would like Class-based OO that feels somewhat like CLOS.</p>
<pre><code>// Create a class called Point
Class("Point", {
has: {
x: {
is: "rw",
init: 0
},
y: {
is: "rw",
init: 0
}
},
methods: {
clear: function () {
this.setX(0);
this.setY(0);
}
}
})
// Use the class
var point = new Point();
point.setX(10)
point.setY(20);
point.clear();
</code></pre>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/115622#1156225Answer by omouse for Hidden Features of JavaScript?omouse2008-09-22T15:41:52Z2008-10-21T01:32:30Z<p>All your "hidden" features are right here on the Mozilla wiki: <a href="http://developer.mozilla.org/en/JavaScript" rel="nofollow">http://developer.mozilla.org/en/JavaScript</a>.</p>
<p>There's <a href="http://developer.mozilla.org/en/Core_JavaScript_1.5_Reference" rel="nofollow">the core JavaScript 1.5 reference</a>, <a href="http://developer.mozilla.org/en/New_in_JavaScript_1.6" rel="nofollow">what's new in JavaScript 1.6</a>, what's <a href="http://developer.mozilla.org/en/New_in_JavaScript_1.7" rel="nofollow">new in JavaScript 1.7</a>, and also what's <a href="http://developer.mozilla.org/en/New_in_JavaScript_1.8" rel="nofollow">new in JavaScript 1.8</a>. Look through all of those for examples that actually work and are <em>not</em> wrong.</p>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/115798#1157984Answer by amix for Hidden Features of JavaScript?amix2008-09-22T16:09:12Z2009-09-22T22:59:18Z<p>Visit:</p>
<ul>
<li><a href="http://images.google.com/images?q=disco" rel="nofollow">http://images.google.com/images?q=disco</a> </li>
</ul>
<p>Paste this JavaScript code into your web browser's address bar:</p>
<ul>
<li><a href="http://amix.dk/upload/awt/spin.txt" rel="nofollow">http://amix.dk/upload/awt/spin.txt</a></li>
<li><a href="http://amix.dk/upload/awt/disco.txt" rel="nofollow">http://amix.dk/upload/awt/disco.txt</a></li>
</ul>
<p>Enjoy the JavaScript disco show :-p</p>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/116790#11679011Answer by Andrey Fedorov for Hidden Features of JavaScript?Andrey Fedorov2008-09-22T19:00:33Z2008-09-22T19:14:57Z<p>Some would call this a matter of taste, but:</p>
<pre><code>aWizz = wizz || "default";
// same as: if (wizz) { aWizz = wizz; } else { aWizz = "default"; }
barredWiz = (foo && bar(foo)) || "barred foo";
// same as: if (foo) { barredWiz = bar(foo) } else { barredWiz = "barred foo" }
</code></pre>
<p>The trinary operator can be chained to act like Scheme's (cond ...):</p>
<pre><code>(cond (predicate (action ...))
(predicate2 (action2 ...))
(#t default ))
</code></pre>
<p>can be written as...</p>
<pre><code>predicate ? action( ... ) :
predicate2 ? action2( ... ) :
default;
</code></pre>
<p>This is very "functional", as it branches your code without side effects. So instead of:</p>
<pre><code>if (predicate) {
foo = "one";
} else if (predicate2) {
foo = "two";
} else {
foo = "default";
}
</code></pre>
<p>You can write:</p>
<pre><code>foo = predicate ? "one" :
predicate2 ? "two" :
"default";
</code></pre>
<p>Works nice with recursion, too :)</p>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/117022#11702213Answer by Leo for Hidden Features of JavaScript?Leo2008-09-22T19:37:49Z2009-09-22T20:35:40Z<p>Off the top of my head...</p>
<p><strong>Functions</strong></p>
<p>arguments.callee refers to the function that hosts the "arguments" variable, so it can be used to recurse anonymous functions:</p>
<pre><code>var recurse = function() {
if (condition) argument.callee(); //calls recurse() again
}
</code></pre>
<p>That's useful if you want to do something like this:</p>
<pre><code>//do something to all array items within an array recursively
myArray.forEach(function(item) {
if (item instanceof Array) item.forEach(arguments.callee)
else {/*...*/}
})
</code></pre>
<p><strong>Objects</strong></p>
<p>An interesting thing about object members: they can have any string as their names:</p>
<pre><code>//these are normal object members
var obj = {
a : function() {},
b : function() {}
}
//but we can do this too
var rules = {
".layout .widget" : function(element) {},
"a[href]" : function(element) {}
}
/*
this snippet searches the page for elements that
match the CSS selectors and applies the respective function to them:
*/
for (var item in rules) {
var elements = document.querySelectorAll(rules[item]);
for (var e, i = 0; e = elements[i++];) rules[item](e);
}
</code></pre>
<p><strong>Strings</strong></p>
<p><em>String.split</em> can take regular expressions as parameters:</p>
<pre><code>"hello world with spaces".split(/\s+/g);
//returns an array: ["hello", "world", "with", "spaces"]
</code></pre>
<p><em>String.replace</em> can take a regular expression as a search parameter and a function as a replacement parameter:</p>
<pre><code>var i = 1;
"foo bar baz ".replace(/\s+/g, function() {return i++});
//returns "foo1bar2baz3"
</code></pre>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/117922#1179220Answer by phyzome for Hidden Features of JavaScript?phyzome2008-09-22T22:03:11Z2008-09-22T22:03:11Z<p>You can redefine large parts of the runtime environment on the fly, such as <a href="http://directwebremoting.org/blog/joe/2007/03/05/json_is_not_as_safe_as_people_think_it_is.html" rel="nofollow">modifying the <code>Array</code> constructor</a> or defining <code>undefined</code>. Not that you should, but it <em>can</em> be a powerful feature.</p>
<p>A somewhat less dangerous form of this is the addition of helper methods to existing objects. You can <a href="http://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Global_Objects/Array/indexOf#Compatibility" rel="nofollow">make IE6 "natively" support indexOf on arrays</a>, for example.</p>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/117951#11795132Answer by David Leonard for Hidden Features of JavaScript?David Leonard2008-09-22T22:13:25Z2009-03-02T17:50:40Z<p>Here are some interesting things:</p>
<ul>
<li>Comparing NaN with anything (even NaN) is always false.</li>
<li>Array.sort can take a comparator function and is usually called by a quicksort-like driver (depends on implementation).</li>
<li>Regular expression "constants" can maintain state (like the last thing they matched)</li>
<li>Some versions of javascript allow you to access $0, $1, $2 members on a regex.</li>
<li>null is unlike anything else. It is neither an object, a boolean, a number, a string, nor undefined. It's a bit like an "alternate" undefined. (note: typeof null == "object")</li>
<li>In the outermost context, 'this' yields the otherwise unnameable [Global] object.</li>
<li>Declaring a variable with 'var', instead of just relying on automatic declaration of the variable gives the runtime a real chance of optimizing access to that variable</li>
<li>the 'with' construct will destroy such optimzations</li>
<li>Variable names can contain Unicode.</li>
<li>JavaScript regular expressions are not actually regular. They are based on Perl's regexs, and it is possible to construct expressions with lookaheads that take a very, very long time to evaluate.</li>
<li>Blocks can be labeled and used as the targets of break. Loops can be labeled and used as the target of continue.</li>
<li>Arrays are not sparse. Setting the 1000th element of an otherwise empty array should fill it with undefined.</li>
<li>if(new Boolean(false)){...} will execute the true block</li>
</ul>
<p><em>[updated a little in response to good comments; please see comments]</em></p>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/118150#11815038Answer by bluefish101 for Hidden Features of JavaScript?bluefish1012008-09-22T23:06:53Z2008-09-22T23:06:53Z<p>Also mentioned in Crockford's "Javascript: The Good Parts":</p>
<p>parseInt() is dangerous. If you pass it a string without informing it of the proper base it may return unexpected numbers. For example parseInt('010') returns 8, not 10. Passing a base to parseInt makes it work correctly:</p>
<pre><code>parseInt('010') // returns 8! (in FF3)
parseInt('010', 10); // returns 10 because we've informed it which base to work with.
</code></pre>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/118556#11855611Answer by Chris Noe for Hidden Features of JavaScript?Chris Noe2008-09-23T01:06:46Z2009-09-22T20:38:14Z<p>There are several answers in this thread showing how to
extend the Array object via its prototype. This is a BAD
IDEA, because it breaks the <code>for (i in a)</code> statement.</p>
<p>So is it okay if you don't happen to use <code>for (i in a)</code>
anywhere in your code? Well, only if your own code is the
only code that you are running, which is not too likely
inside a browser. I'm afraid that if folks start extending
their Array objects like this, Stack Overflow will start
overflowing with a bunch of mysterious JavaScript bugs.</p>
<p>See helpful details <a href="http://web-graphics.com/2006/05/23/on-modifying-prototypes-of-javascript-built-ins/" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/123136#1231365Answer by travis for Hidden Features of JavaScript?travis2008-09-23T19:13:06Z2009-09-22T22:57:01Z<p>Here's a couple of shortcuts:</p>
<pre><code>var a = []; // equivalent to new Array()
var o = {}; // equivalent to new Object()
</code></pre>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/128867#12886725Answer by ScottKoon for Hidden Features of JavaScript?ScottKoon2008-09-24T18:17:04Z2008-09-24T18:17:04Z<p>I'd have to say self-executing functions.</p>
<pre><code>(function() { alert("hi there");})();
</code></pre>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/130026#1300260Answer by korchev for Hidden Features of JavaScript?korchev2008-09-24T21:12:45Z2008-09-24T21:49:22Z<p>Use <a href="http://jquery.com" rel="nofollow">jQuery</a> for efficient JavaScript development. It can do magic with 1 line of code:</p>
<pre><code>$("div.someDiv").click(function() { ($(this).hide("slow"); } );
</code></pre>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/143666#1436663Answer by Malde for Hidden Features of JavaScript?Malde2008-09-27T13:45:14Z2008-09-27T13:45:14Z<p>The == operator has a very special property, that creates this disturbing equality (Yes, I know in other dynamic languages like Perl this behavior would be expected but JavaScript ususally does not try to be smart in comparisons):</p>
<pre><code>>>> 1 == true
true
>>> 0 == false
true
>>> 2 == true
false
</code></pre>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/152545#1525454Answer by Rob for Hidden Features of JavaScript?Rob2008-09-30T10:43:20Z2009-09-22T23:00:02Z<p>Prevent annoying errors while testing in Internet Explorer when using console.log() for Firebug:</p>
<pre><code>try { console.log(''); } catch(e) { console = { log: function(s) {alert(s);} } }
</code></pre>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/155730#1557303Answer by eed3si9n for Hidden Features of JavaScript?eed3si9n2008-10-01T00:37:37Z2008-10-01T00:37:37Z<p><code>let</code>.</p>
<p>Counterpart to <a href="http://stackoverflow.com/questions/61088/hidden-features-of-javascript#61173">var's lack of block-scoping</a> is <code>let</code>, <a href="http://developer.mozilla.org/en/New_in_JavaScript_1.7#Block_scope_with_let" rel="nofollow">introduced in JavaScript 1.7</a>.</p>
<blockquote>
<ul>
<li>The let statement provides a way to associate values with variables
within the scope of a block, without
affecting the values of like-named
variables outside the block.</li>
<li>The let expression lets you establish variables scoped only to a
single expression.</li>
<li>The let definition defines variables whose scope is constrained
to the block in which they're defined.
This syntax is very much like the
syntax used for var.</li>
<li>You can also use let to establish variables that exist only within the
context of a for loop.</li>
</ul>
</blockquote>
<pre><code> function varTest() {
var x = 31;
if (true) {
var x = 71; // same variable!
alert(x); // 71
}
alert(x); // 71
}
function letTest() {
let x = 31;
if (true) {
let x = 71; // different variable
alert(x); // 71
}
alert(x); // 31
}
</code></pre>
<p>As of 2008, JavaScript 1.7 is supported in FireFox 2.0+ and Safari 3.x.</p>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/155761#1557612Answer by eed3si9n for Hidden Features of JavaScript?eed3si9n2008-10-01T00:51:57Z2008-10-01T00:51:57Z<p><a href="http://developer.mozilla.org/en/New_in_JavaScript_1.7#Generators_and_iterators" rel="nofollow">Generators and Iterators</a> (works only in Firefox 2+ and Safari).</p>
<pre><code>function fib() {
var i = 0, j = 1;
while (true) {
yield i;
var t = i;
i = j;
j += t;
}
}
var g = fib();
for (var i = 0; i < 10; i++) {
document.write(g.next() + "<br>\n");
}
</code></pre>
<blockquote>
<p>The function containing the <code>yield</code>
keyword is a generator. When you call
it, its formal parameters are bound to
actual arguments, but its body isn't
actually evaluated. Instead, a
generator-iterator is returned. Each
call to the generator-iterator's
<code>next()</code> method performs another pass
through the iterative algorithm. Each
step's value is the value specified by
the <code>yield</code> keyword. Think of <code>yield</code> as
the generator-iterator version of
return, indicating the boundary
between each iteration of the
algorithm. Each time you call <code>next()</code>,
the generator code resumes from the
statement following the <code>yield</code>.</p>
<p>In normal usage, iterator objects are
"invisible"; you won't need to operate
on them explicitly, but will instead
use JavaScript's <code>for...in</code> and <code>for each...in</code> statements to loop naturally
over the keys and/or values of
objects.</p>
</blockquote>
<pre><code>var objectWithIterator = getObjectSomehow();
for (var i in objectWithIterator)
{
document.write(objectWithIterator[i] + "<br>\n");
}
</code></pre>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/155805#15580521Answer by Ates Goral for Hidden Features of JavaScript?Ates Goral2008-10-01T01:05:45Z2008-10-01T01:05:45Z<p>To properly remove a property from an object, you should delete the property instead of just setting it to <em>undefined</em>:</p>
<pre><code>var obj = { prop1: 42, prop2: 43 };
obj.prop2 = undefined;
for (var key in obj) {
...
</code></pre>
<p>The property <em>prop2</em> will still be part of the iteration. If you want to completely get rid of <em>prop2</em>, you should instead do:</p>
<pre><code>delete obj.prop2;
</code></pre>
<p>The property <em>prop2</em> will no longer will make an appearance when you're iterating through the properties.</p>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/156290#15629030Answer by Ates Goral for Hidden Features of JavaScript?Ates Goral2008-10-01T04:55:13Z2009-09-22T19:06:25Z<p>If you're Googling for a decent JavaScript reference on a given topic, include the "mdc" keyword in your query and your first results will be from the Mozilla Developer Center. I don't carry any offline references or books with me. I always use the "mdc" keyword trick to directly get to what I'm looking for. For example:</p>
<p>Google: <a href="http://www.google.com/search?q=javascript+array+sort+mdc" rel="nofollow">javascript array sort mdc</a><br />
(in most cases you may omit "javascript")</p>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/158462#1584624Answer by Ates Goral for Hidden Features of JavaScript?Ates Goral2008-10-01T16:20:13Z2008-10-01T16:20:13Z<p>If you blindly <code>eval()</code> a JSON string to deserialize it, you may run into problems:</p>
<ol>
<li>It's not secure. The string may contain malicious function calls!</li>
<li><p>If you don't enclose the JSON string in parentheses, property names can be mistaken as labels, resulting in unexpected behaviour or a syntax error:</p>
<pre><code>eval("{ \"foo\": 42 }"); // syntax error: invalid label
eval("({ \"foo\": 42 })"); // OK
</code></pre></li>
</ol>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/170904#1709040Answer by gbt for Hidden Features of JavaScript?gbt2008-10-04T19:38:00Z2008-10-04T19:38:00Z<blockquote>
<p>function l(f,n){n&&l(f,n-1,f(n));}</p>
<p>l( function( loop ){ alert( loop ); },
5 );</p>
</blockquote>
<p>alerts 5, 4, 3, 2, 1</p>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/179154#1791540Answer by Ates Goral for Hidden Features of JavaScript?Ates Goral2008-10-07T15:52:38Z2008-10-07T15:52:38Z<p>To convert a floating point number to an integer, you can use one of the following cryptic hacks (please don't):</p>
<ol>
<li><code>3.14 >> 0</code> (via <a href="http://stackoverflow.com/questions/173070/29999999999999999-5">http://stackoverflow.com/questions/173070/29999999999999999-5</a>)</li>
<li><code>3.14 | 0</code> (via <a href="http://stackoverflow.com/questions/131406/what-is-the-best-method-to-convert-to-an-integer-in-javascript">http://stackoverflow.com/questions/131406/what-is-the-best-method-to-convert-to-an-integer-in-javascript</a>)</li>
<li><code>3.14 & -1</code></li>
<li><code>3.14 ^ 0</code></li>
</ol>
<p>Basically, applying any binary operation on the float that won't change the final value (i.e. identity function) ends up converting the float to an integer.</p>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/182493#1824933Answer by roosteronacid for Hidden Features of JavaScript?roosteronacid2008-10-08T12:30:25Z2008-10-08T12:30:25Z<p><strong>jQuery and JavaScript:</strong></p>
<p>Variable-names can contain a number of odd characters. I use the $ character to identify variables containing jQuery objects:</p>
<pre><code>var $links = $("a");
$links.hide();
</code></pre>
<p>jQuery's pattern of chaining objects is quite nice, but applying this pattern can get a bit confusing. Fortunately JavaScript allows you to break lines, like so:</p>
<pre><code>$("a")
.hide()
.fadeIn()
.fadeOut()
.hide();
</code></pre>
<p><strong>General JavaScript:</strong></p>
<p>I find it useful to emulate scope by using self-executing functions:</p>
<pre><code>function test()
{
// scope of test()
(function()
{
// scope inside the scope of test()
}());
// scope of test()
}
</code></pre>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/224227#2242274Answer by Justin Love for Hidden Features of JavaScript?Justin Love2008-10-22T02:08:05Z2008-10-22T02:08:05Z<p>Function statements and function expressions are handled differently.</p>
<pre><code>function blarg(a) {return a;} // statement
bleep = function(b) {return b;} //expression
</code></pre>
<p>All function statements are parsed before code is run - a function at the bottom of a JavaScript file will be available in the first statement. On the other hand, it won't be able to take advantage of certain dynamic context, such as surrounding <code>with</code> statements - the <code>with</code> hasn't been executed when the function is parsed.</p>
<p>Function expressions execute inline, right where they are encountered. They aren't available before that time, but they can take advantage of dynamic context.</p>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/238770#2387708Answer by Már Örlygsson for Hidden Features of JavaScript?Már Örlygsson2008-10-26T23:10:00Z2008-10-26T23:29:33Z<p><strong>Prototypal inheritance</strong> (popularized by Douglas Crockford) completely revolutionizes the way you think about loads of things in Javascript.</p>
<pre><code>Object.beget = function(Function){
return function(Object){
Function.prototype = Object;
return new Function;
}
}(function(){});
</code></pre>
<p>It's a killer! Pity how almost no one uses it.</p>
<p>It allows you to "beget" new instances of any object, extend them, while maintaining a (live) prototypical inheritance link to their other properties. Example:</p>
<pre><code>var A = {
foo : 'greetings'
};
var B = Object.beget(A);
alert(B.foo); // 'greetings'
// changes and additionns to A are reflected in B
A.foo = 'hello';
alert(B.foo); // 'hello'
A.bar = 'world';
alert(B.bar); // 'world'
// ...but not the other way around
B.foo = 'wazzap';
alert(A.foo); // 'hello'
B.bar = 'universe';
alert(A.bar); // 'world'
</code></pre>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/302545#3025452Answer by bbrown for Hidden Features of JavaScript?bbrown2008-11-19T16:44:38Z2008-11-19T16:44:38Z<p><code>window.name</code>'s value persists across page changes, can be read by the parent window if in same domain (if in an iframe, use <code>document.getElementById("your frame's ID").contentWindow.name</code> to access it), and is limited only by available memory.</p>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/347540#3475405Answer by Andreas Grech for Hidden Features of JavaScript?Andreas Grech2008-12-07T12:50:03Z2008-12-07T12:50:03Z<p>Be sure to use the <strong>hasOwnProperty</strong> method when iterating through an object's properties:</p>
<pre><code>for (p in anObject) {
if (anObject.hasOwnProperty(p)) {
//Do stuff with p here
}
}
</code></pre>
<p>This is done so that you will only access the <strong>direct properties of <em>anObject</em></strong>, and not use the properties that are down the prototype chain.</p>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/347552#34755211Answer by Andreas Grech for Hidden Features of JavaScript?Andreas Grech2008-12-07T13:01:48Z2008-12-07T13:01:48Z<p>When you want to remove an element from an array, one can use the <strong><em>delete</em></strong> operator, as such:</p>
<pre><code>var numbers = [1,2,3,4,5];
delete numbers[3];
//numbers is now [1,2,3,undefined,5]
</code></pre>
<p>As you can see, the element was removed, but a hole was left in the array since the element was replaced with an <em>undefined</em> value.</p>
<p>Thus, to work around this problem, instead of using <em>delete</em>, use the <strong><em>splice</em></strong> array method...as such:</p>
<pre><code>var numbers = [1,2,3,4,5];
numbers.splice(3,1);
//numbers is now [1,2,3,5]
</code></pre>
<p>The first argument of <strong><em>splice</em></strong> is an ordinal in the array [index], and the second is the number of elements to delete.</p>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/414508#4145084Answer by Binoj Antony for Hidden Features of JavaScript?Binoj Antony2009-01-05T20:59:30Z2009-01-05T20:59:30Z<p>Microsofts <a href="http://en.wikipedia.org/wiki/XMLHttpRequest" rel="nofollow">gift to JavaScript</a>: AJAX</p>
<pre><code>AJAXCall('http://www.abcd.com/')
function AJAXCall(url) {
var client = new XMLHttpRequest();
client.onreadystatechange = handlerFunc;
client.open("GET", url);
client.send();
}
function handlerFunc() {
if(this.readyState == 4 && this.status == 200) {
if(this.responseXML != null)
document.write(this.responseXML)
}
}
</code></pre>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/460884#4608843Answer by Remy Sharp for Hidden Features of JavaScript?Remy Sharp2009-01-20T11:22:22Z2009-01-20T11:22:22Z<p>Large loops are faster in a while condition and backwards - that is, if the order of the loop doesn't matter to you. In about 50% of my code, it usually doesn't.</p>
<p>i.e. </p>
<pre><code>var i, len = 100000;
for (var i = 0; i < len; i++) {
// do stuff
}
</code></pre>
<p>Is slower than:</p>
<pre><code>i = len;
while (i--) {
// do stuff
}
</code></pre>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/476923#4769230Answer by Wilq32 for Hidden Features of JavaScript?Wilq322009-01-25T00:03:01Z2009-09-22T23:16:08Z<p>There is also an almost unknown JavaScript syntax:</p>
<pre><code>var a;
a=alert(5),7;
alert(a); // alerts undefined
a=7,alert(5);
alert(a); // alerts 7
a=(3,6);
alert(a); // alerts 6
</code></pre>
<p>More about this <a href="http://stackoverflow.com/questions/476218/javascript-syntax-of-a-object-object">here</a>.</p>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/490143#4901439Answer by Breton for Hidden Features of JavaScript?Breton2009-01-29T01:16:05Z2009-01-29T01:16:05Z<p>You can use objects instead of switches most of the time.</p>
<pre><code>function getInnerText(o){
return o === null? null : {
string: o,
array: o.map(innerText).join(""),
object:innerText(o["childNodes"])
}[typeof o];
}
</code></pre>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/490169#4901698Answer by Ionut G. Stan for Hidden Features of JavaScript?Ionut G. Stan2009-01-29T01:25:56Z2009-01-29T01:31:43Z<p>You may catch exceptions depending on their type. Quoted from <a href="https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Statements/try...catch" rel="nofollow">MDC</a>:</p>
<pre><code>try {
myroutine(); // may throw three exceptions
} catch (e if e instanceof TypeError) {
// statements to handle TypeError exceptions
} catch (e if e instanceof RangeError) {
// statements to handle RangeError exceptions
} catch (e if e instanceof EvalError) {
// statements to handle EvalError exceptions
} catch (e) {
// statements to handle any unspecified exceptions
logMyErrors(e); // pass exception object to error handler
}
</code></pre>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/490546#4905462Answer by Breton for Hidden Features of JavaScript?Breton2009-01-29T05:12:21Z2009-01-29T05:21:52Z<p>You can turn "any* object with integer properties, and a length property into an array proper, and thus endow it with all array methods such as push, pop, splice, map, filter, reduce, etc.</p>
<pre><code>Array.prototype.slice.call({"0":"foo", "1":"bar", 2:"baz", "length":3 })
</code></pre>
<p>// returns ["foo", "bar", "baz"]</p>
<p>This works with jQuery objects, html collections, and Array objects from other frames (as one possible solution to the whole array type thing). I say, if it's got a length property, you can turn it into an array and it doesn't matter. There's lots of non array objects with a length property, beyond the arguments object.</p>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/625580#6255800Answer by roosteronacid for Hidden Features of JavaScript?roosteronacid2009-03-09T09:40:32Z2009-03-10T14:16:05Z<p><strong>Syntactic sugar: in-line for-loop closures</strong></p>
<pre><code>var i;
for (i = 0; i < 10; i++) (function ()
{
// do something with i
}());
</code></pre>
<p>Breaks almost all of Douglas Crockford's code-conventions, but I think it's quite nice to look at, never the less :)</p>
<p><hr /></p>
<p>Alternative:</p>
<pre><code>var i;
for (i = 0; i < 10; i++) (function (j)
{
// do something with j
}(i));
</code></pre>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/628728#6287281Answer by Ates Goral for Hidden Features of JavaScript?Ates Goral2009-03-10T02:33:30Z2009-03-10T02:33:30Z<p>This seems to only work on Firefox (SpiderMonkey). Inside a function:</p>
<ul>
<li><code>arguments[-2]</code> gives the number of arguments (same as arguments.length)</li>
<li><code>arguments[-3]</code> gives the function that was called (same as arguments.callee)</li>
</ul>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/645331#6453311Answer by nickyt for Hidden Features of JavaScript?nickyt2009-03-14T03:59:25Z2009-03-14T03:59:25Z<p>Existence checks. So often I see stuff like this</p>
<pre><code>var a = [0, 1, 2];
// code that might clear the array.
if (a.length > 0) {
// do something
}
</code></pre>
<p>instead for example just do this:</p>
<pre><code>var a = [0, 1, 2];
// code that might clear the array.
if (a.length) { // if length is not equal to 0, this will be true
// do something
}
</code></pre>
<p>There's all kinds of existence checks you can do, but this was just a simple example to illustrate a point</p>
<p>Here's an example on how to use a default value.</p>
<pre><code>function(someArgument) {
someArgument = someArgument || "This is the deault value";
}
</code></pre>
<p>That's my two cents. There's other nuggets, but that's it for now.</p>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/692380#6923805Answer by Lucent for Hidden Features of JavaScript?Lucent2009-03-28T07:21:48Z2009-03-28T07:21:48Z<p>You never have to use <code>eval()</code> to assemble global variable names.</p>
<p>That is, if you have several globals (for whatever reason) named <code>spec_grapes, spec_apples</code>, you do not have to access them with <code>eval("spec_" + var)</code>.</p>
<p>All globals are members of <code>window[]</code>, so you can do <code>window["spec_" + var]</code>.</p>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/731342#7313424Answer by e-satis for Hidden Features of JavaScript?e-satis2009-04-08T18:50:35Z2009-04-08T18:50:35Z<h2>You can iterate over Arrays using "for in"</h2>
<p>Mark Cidade pointed out the usefullness of the "for in" loop :</p>
<pre><code>// creating an object (the short way, to use it like a hashmap)
var diner = {
"fruit":"apple"
"veggetable"="bean"
}
// looping over its properties
for (meal_name in diner ) {
document.write(meal_name+"<br \n>");
}
</code></pre>
<p>Result :</p>
<pre><code>fruit
veggetable
</code></pre>
<p>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 :</p>
<pre><code>// looping over its properties and values
for (meal_name in diner ) {
document.write(meal_name+" : "+diner[meal_name]+"<br \n>");
}
</code></pre>
<p>Result :</p>
<pre><code>fruit : apple
veggetable : bean
</code></pre>
<p>And since Array are objects too, you can iterate other array the exact same way :</p>
<pre><code>var my_array = ['a', 'b', 'c'];
for (index in my_array ) {
document.write(index+" : "+my_array[index]+"<br \n>");
}
</code></pre>
<p>Result :</p>
<pre><code>0 : a
1 : b
3 : c
</code></pre>
<h2>You can remove easily an known element from an array</h2>
<pre><code>var arr = ['a', 'b', 'c', 'd'];
var pos = arr.indexOf('c');
pos > -1 && arr.splice( pos, 1 );
</code></pre>
<h2>You can shuffle easily an array</h2>
<pre><code>arr.sort(function() Math.random() > 0.5 ? 1 : -1);
</code></pre>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/731411#7314113Answer by Dave for Hidden Features of JavaScript?Dave2009-04-08T19:09:53Z2009-04-08T19:09:53Z<p>The parentheses are optional when creating new "objects".</p>
<pre><code>function Animal () {
}
var animal = new Animal();
var animal = new Animal;
</code></pre>
<p>Same thing.</p>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/841201#8412019Answer by username for Hidden Features of JavaScript?username2009-05-08T18:34:14Z2009-05-08T18:34:14Z<p>You can assign local variables using [] on the left hand side. Comes in handy if you want to return more than one value from a function without creating a needless array.</p>
<pre><code>function fn(){
var cat = "meow";
var dog = "woof";
return [cat,dog];
};
var [cat,dog] = fn(); // Handy!
alert(cat);
alert(dog);
</code></pre>
<p>It's part of core JS but somehow I never realized till this year.</p>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/843499#8434991Answer by Gumbo for Hidden Features of JavaScript?Gumbo2009-05-09T15:32:09Z2009-05-09T15:32:09Z<p><a href="http://code.google.com/p/jslibs/wiki/JavascriptTips" rel="nofollow">JavaScript tips</a> or the <a href="http://code.google.com/p/jslibs/" rel="nofollow">jslibs project</a>.</p>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/865753#8657530Answer by sschuth for Hidden Features of JavaScript?sschuth2009-05-14T21:02:33Z2009-05-14T21:02:33Z<p>Maybe one of the lesser-known ones:</p>
<p>arguments.callee.caller + Function#toString()</p>
<pre><code>function called(){
alert("Go called by:\n"+arguments.callee.caller.toString());
}
function iDoTheCall(){
called();
}
iDoTheCall();
</code></pre>
<p>Prints out the source code of <code>iDoTheCall</code> --
Deprecated, but can be useful sometimes when alerting is your only option....</p>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/955784#9557841Answer by pawelsto for Hidden Features of JavaScript?pawelsto2009-06-05T13:13:03Z2009-09-22T23:03:32Z<p>You can bind a JavaScript object as a HTML element attribute.</p>
<pre><code><div id="jsTest">Klick Me</div>
<script type="text/javascript">
var someVariable = 'I was klicked';
var divElement = document.getElementById('jsTest');
// binding function/object or anything as attribute
divElement.controller = function() { someVariable += '*'; alert('You can change instance data:\n' + someVariable ); };
var onclickFunct = new Function( 'this.controller();' ); // Works in Firefox and Internet Explorer.
divElement.onclick = onclickFunct;
</script>
</code></pre>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/1013865#10138650Answer by Mauvis Ledford for Hidden Features of JavaScript?Mauvis Ledford2009-06-18T16:52:31Z2009-09-22T23:25:55Z<p>An interesting way to make Singleton-like objects with public / private methods (I saw this once in a jQuery plugin):</p>
<pre><code>var Car = function() {
function Engine() {
function start() {
}
function stop() {
}
function internal1() {
}
return {
start : start,
stop : stop
}
}();
function start() {
Engine.start();
// other startup code
}
function stop() {
Engine.stop();
// other stop code
}
return {
start : start,
stop : stop
}
}();
</code></pre>
<p>The internal objects has public methods that only internal objects can interface with allowing the main object public methods for accessing the internal public methods.</p>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/1024826#10248263Answer by Metal for Hidden Features of JavaScript?Metal2009-06-21T21:43:33Z2009-06-21T21:43:33Z<p>If you're attempting to sandbox javascript code, and disable every possible way to evaluate strings into javascript code, be aware that blocking all the obvious eval/document.write/new Function/setTimeout/setInterval/innerHTML and other DOM manipulations isn't enough.</p>
<p>Given any object o, <code>o.constructor.constructor("alert('hi')")()</code> will bring up an alert dialog with the word "hi" in it.</p>
<p>You could rewrite it as</p>
<pre><code>var Z="constructor";
Z[Z][Z]("alert('hi')")();
</code></pre>
<p>Fun stuff.</p>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/1025127#10251275Answer by Josip for Hidden Features of JavaScript?Josip2009-06-22T00:28:32Z2009-06-22T00:28:32Z<p>The fastest loops in JavaScript are while(i--) ones. In all browsers.
So if it's not that important for order in which elements of your loop get processed you should be using while(i--) form:</p>
<pre><code>var names = new Array(1024), i = names.length;
while(i--)
names[i] = "John" + i;
</code></pre>
<p>Also, if you have to use for() loop going forward, remember always to cache .length property:</p>
<pre><code>var birds = new Array(1024);
for(var i = 0, j = birds.length; i < j; i++)
birds[i].fly();
</code></pre>
<p>To join large strings use Arrays (it's faster):</p>
<pre><code>var largeString = new Array(1024), i = largeString.length;
while(i--) {
// It's faster than for() loop with largeString.push(), obviously :)
largeString[i] = i.toString(16);
}
largeString = largeString.join("");
</code></pre>
<p>It's much faster than <code>largeString += "something"</code> inside an loop.</p>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/1025603#10256030Answer by unknown (yahoo) for Hidden Features of JavaScript?unknown (yahoo)2009-06-22T05:40:11Z2009-06-22T05:40:11Z<p>Look for valid variables, return the first one (G.valid(var1,var2,var3)):</p>
<pre><code> valid : function(){
var i,
args = Array.prototype.slice.call(arguments);
for(i in args) {
if(args[i] !== undefined) {
return args[i];
}
}
return "";
},
</code></pre>
<p>Turn hh:mm:ss to (number)h (number)m:</p>
<pre><code> var time=/(\d{2}):(\d{2}):(\d{2})/;
return t.replace(time, function(str, p1, p2, p3, offset, s) {
var h=parseInt(p1),
m=parseInt(p2),
ret = "";
if(h > 0) {
ret = h + "h ";
}
return ret + m + "m";
});
</code></pre>
<p>Deal with money in pennies....</p>
<p>Do an action on enter:</p>
<p>onEnter(element, callback):</p>
<pre><code> onEnter: function(div, callback) {
div.onkeyup(function(e){
var keycode;
if (window.event) keycode = window.event.keyCode;
else if (e) keycode = e.which;
else return true;
if (keycode == 13) {
callback.apply(this);
}
});
},
</code></pre>
<p>serialize an object's keys, discarding its values </p>
<pre><code> sObj : function (o) {
var ret = [],
i;
for(i in o) {
ret.push(i);
}
return ret;
},
</code></pre>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/1025990#10259900Answer by Justin Johnson for Hidden Features of JavaScript?Justin Johnson2009-06-22T07:58:58Z2009-07-21T21:52:39Z<p>The coalescing operator is very cool and makes for some clean, concise code, especially when you chain it together: <code>a || b || c || "default";</code> The gotcha is that since it works by evaluating to bool rather than null, if values that evaluate to false are valid, they'll often times get over looked. Not to worry, in these cases just revert to the good ol' ternary operator. </p>
<p>I often see code that has given up and used global instead of static variables, so here's how (in an example of what I suppose you could call a generic singleton factory):</p>
<pre><code>var getInstance = function(objectName) {
if ( !getInstance.instances ) {
getInstance.instances = {};
}
if ( !getInstance.instances[objectName] ) {
getInstance.instances[objectName] = new window[objectName];
}
return getInstance.instances[objectName];
};
</code></pre>
<p>Also, note the <code>new window[objectName];</code> which was the key to generically instantiating objects by name. I just figured that out 2 months ago.</p>
<p>In the same spirit, when working with the DOM, I often bury functioning parameters and/or flags into DOM nodes when I first initialize whatever functionality I'm adding. I'll add an example if someone squawks.</p>
<p>Surprisingly, no one on the first page has mentioned <code>hasOwnProperty</code>, which is a shame. When using <code>in</code> for iteration, it's good, defensive programming to use the <code>hasOwnProperty</code> method on the container being iterated over to make sure that the member names being used are the ones that you expect.</p>
<pre><code>var x = [1,2,3];
for ( i in x ) {
if ( !x.hasOwnProperty(i) ) { continue; }
console.log(i, x[i]);
}
</code></pre>
<p><a href="http://ajaxian.com/archives/fun-with-browsers-for-in-loop" rel="nofollow">Read here</a> for more on this.</p>
<p>Lastly, <code>with</code> is almost always a bad idea.</p>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/1027702#10277020Answer by ErroneousBee for Hidden Features of JavaScript?ErroneousBee2009-06-22T15:02:02Z2009-09-22T23:13:43Z<p>Testing that object attributes are defined before they are used can be tedious:</p>
<pre><code>// This can throw an error is some or deep or nested are undefined
some.deep.nested.attribute = somevalue;
// But testing them is tedious
if (typeof(some) != 'undefined') {
if (typeof(some.deep) != 'undefined') {
etc...
}
}
</code></pre>
<p>However:</p>
<pre><code>// Simples!
try { some.deep.nested.attribute = somevalue; }
catch (e) { alert('Ooooh'); }
</code></pre>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/1043658#10436580Answer by Blixt for Hidden Features of JavaScript?Blixt2009-06-25T12:36:33Z2009-06-25T12:36:33Z<p>You can make "classes" that have private (inaccessible outside the "class" definition) static and non-static members, in addition to public members, using closures.</p>
<p>Note that there are two types of public members in the code below. Instance-specific (defined in the constructor) that have access to private <em>instance</em> members, and shared members (defined in the <code>prototype</code> object) that only have access to private <em>static</em> members.</p>
<pre><code>var MyClass = (function () {
// private static
var nextId = 1;
// constructor
var cls = function () {
// private
var id = nextId++;
var name = 'Unknown';
// public (this instance only)
this.get_id = function () { return id; };
this.get_name = function () { return name; };
this.set_name = function (value) {
if (typeof value != 'string')
throw 'Name must be a string';
if (value.length < 2 || value.length > 20)
throw 'Name must be 2-20 characters long.';
name = value;
};
};
// public static
cls.get_nextId = function () {
return nextId;
};
// public (shared across instances)
cls.prototype = {
announce: function () {
alert('Hi there! My id is ' + this.get_id() + ' and my name is "' + this.get_name() + '"!\r\n' +
'The next fellow\'s id will be ' + MyClass.get_nextId() + '!');
}
};
return cls;
})();
</code></pre>
<p>To test this code:</p>
<pre><code>var mc1 = new MyClass();
mc1.set_name('Bob');
var mc2 = new MyClass();
mc2.set_name('Anne');
mc1.announce();
mc2.announce();
</code></pre>
<p>If you have Firebug you'll find that there is no way to get access to the private members other than to set a breakpoint inside the closure that defines them.</p>
<p>This pattern is very useful when defining classes that need strict validation on values, and complete control of state changes.</p>
<p>To extend this class, you would put <code>MyClass.call(this);</code> at the top of the constructor in the extending class. You would also need to <strong>copy</strong> the <code>MyClass.prototype</code> object (don't reuse it, as you would change the members of <code>MyClass</code> as well.</p>
<p>If you were to replace the <code>announce</code> method, you would call <code>MyClass.announce</code> from it like so: <code>MyClass.prototype.announce.call(this);</code></p>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/1131595#11315954Answer by RaYell for Hidden Features of JavaScript?RaYell2009-07-15T14:00:10Z2009-07-15T14:00:10Z<p>JavaScript <code>typeof</code> operator used with arrays or nulls always returns <code>object</code> value which in some cases may not be what programmer would expect.</p>
<p>Here's a function that will return proper values for those items as well. Array recognition was copied from Douglas Crockford's book "JavaScript: The Good Parts".</p>
<pre><code>function typeOf (value) {
var type = typeof value;
if (type === 'object') {
if (value === null) {
type = 'null';
} else if (typeof value.length === 'number' &&
typeof value.splice === 'function' &&
!value.propertyIsEnumerable('length')) {
type = 'array';
}
}
return type;
}
</code></pre>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/1162208#11622080Answer by gotch4 for Hidden Features of JavaScript?gotch42009-07-21T23:05:36Z2009-07-21T23:05:36Z<p>Using <strong>Function.apply</strong> to specify the object that the function will work on:</p>
<p>Suppose you have the class</p>
<pre><code>function myClass(){
this.fun = function(){
do something;
};
}
</code></pre>
<p>if later you do:</p>
<pre><code>var a = new myClass();
var b = new myClass();
myClass.fun.apply(b); //this will be like b.fun();
</code></pre>
<p>You can even specify an array of call parameters as a secondo argument</p>
<p>look this: <a href="https://developer.mozilla.org/en/Core%5FJavaScript%5F1.5%5FReference/Global%5FObjects/Function/apply" rel="nofollow">https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Global_Objects/Function/apply</a></p>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/1176498#11764981Answer by outis for Hidden Features of JavaScript?outis2009-07-24T08:57:34Z2009-09-22T23:10:33Z<p>My first submission is not so much a hidden feature as a rarely used application of the property re-definition feature. Because you can redefine an object's methods, you can cache the result of a method call, which is useful if the calculation is expensive and you want lazy evaluation. This gives the simplest form of <a href="http://en.wikipedia.org/wiki/Memoization" rel="nofollow">memoization</a>.</p>
<pre><code>function Circle(r) {
this.setR(r);
}
Circle.prototype = {
recalcArea: function() {
this.area=function() {
area = this.r * this.r * Math.PI;
this.area = function() {return area;}
return area;
}
},
setR: function (r) {
this.r = r;
this.invalidateR();
},
invalidateR: function() {
this.recalcArea();
}
}
</code></pre>
<p>Refactor the code that caches the result into a method and you get:</p>
<pre><code>Object.prototype.cacheResult = function(name, _get) {
this[name] = function() {
var result = _get.apply(this, arguments);
this[name] = function() {
return result;
}
return result;
};
};
function Circle(r) {
this.setR(r);
}
Circle.prototype = {
recalcArea: function() {
this.cacheResult('area', function() { return this.r * this.r * Math.PI; });
},
setR: function (r) {
this.r = r;
this.invalidateR();
},
invalidateR: function() {
this.recalcArea();
}
}
</code></pre>
<p>If you want a memoized function, you can have that instead. Property re-definition isn't involved.</p>
<pre><code>Object.prototype.memoize = function(name, implementation) {
this[name] = function() {
var argStr = Array.toString.call(arguments);
if (typeof(this[name].memo[argStr]) == 'undefined') {
this[name].memo[argStr] = implementation.apply(this, arguments);
}
return this[name].memo[argStr];
}
};
</code></pre>
<p>Note that this relies on the standard array toString conversion and often won't work properly. Fixing it is left as an exercise for the reader.</p>
<p>My second submission is getters and setters. I'm surprised they haven't been mentioned yet. Because the official standard differs from the de facto standard (defineProperty vs. <strong>define[GS]etter</strong>) and Internet Explorer barely supports the official standard, they aren't generally useful. Maybe that's why they weren't mentioned. Note that you can combine getters and result caching rather nicely:</p>
<pre><code>Object.prototype.defineCacher = function(name, _get) {
this.__defineGetter__(name, function() {
var result = _get.call(this);
this.__defineGetter__(name, function() { return result; });
return result;
})
};
function Circle(r) {
this.r = r;
}
Circle.prototype = {
invalidateR: function() {
this.recalcArea();
},
recalcArea: function() {
this.defineCacher('area', function() {return this.r * this.r * Math.PI; });
},
get r() { return this._r; }
set r(r) { this._r = r; this.invalidateR(); }
}
var unit = new Circle(1);
unit.area;
</code></pre>
<p>Efficiently combining getters, setters and result caching is a little messier because you have to prevent the invalidation or do without automatic invalidation on set, which is what the following example does. It's mostly an issue if changing one property will invalidate multiple others (imagine there's a "diameter" property in these examples).</p>
<pre><code>Object.prototype.defineRecalcer = function(name, _get) {
var recalcFunc;
this[recalcFunc='recalc'+name.toCapitalized()] = function() {
this.defineCacher(name, _get);
};
this[recalcFunc]();
this.__defineSetter__(name, function(value) {
_set.call(this, value);
this.__defineGetter__(name, function() {return value; });
});
};
function Circle(r) {
this.defineRecalcer('area',
function() {return this.r * this.r * Math.PI;},
function(area) {this._r = Math.sqrt(area / Math.PI);},
);
this.r = r;
}
Circle.prototype = {
invalidateR: function() {
this.recalcArea();
},
get r() { return this._r; }
set r(r) { this._r = r; this.invalidateR(); }
}
</code></pre>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/1211874#12118743Answer by Fabian Jakobs for Hidden Features of JavaScript?Fabian Jakobs2009-07-31T10:43:10Z2009-07-31T10:43:10Z<p><strong>The <a href="http://yuiblog.com/blog/2007/06/12/module-pattern/" rel="nofollow">Module Pattern</a></strong></p>
<pre><code><script type="text/javascript">
(function() {
function init() {
// ...
}
window.onload = init;
})();
</script>
</code></pre>
<p>Variables and functions declared without the <code>var</code> statement or outside of a function will be defined in the global scope. If a variable/function of the same name already exists it will be silently overridden, which can lead to very hard to find errors. A common solution is to wrap the whole code body into an anonymous function and immediately execute it. This way all variables/functions are defined in the scope of the anonymous function and don't leak into the global scope.</p>
<p>To explicitly define a variable/function in the global scope they have to be prefixed with <code>window</code>:</p>
<pre><code>window.GLOBAL_VAR = 12;
window.global_function = function() {};
</code></pre>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/1211921#12119211Answer by Fabian Jakobs for Hidden Features of JavaScript?Fabian Jakobs2009-07-31T10:56:13Z2009-07-31T10:56:13Z<p><strong><a href="http://www.dustindiaz.com/namespace-your-javascript/" rel="nofollow">Namespaces</a></strong></p>
<p>In larger JavaScript applications or frameworks it can be useful to organize the code in namespaces. JavaScript doesn't have a module or namespace concept buildin but it is easy to emulate using JavaScript objects. This would create a namespace called <code>ns</code>and attaches the function <code>foo</code>to it.</p>
<pre><code>if (!window.ns) {
window.ns = {};
}
window.ns.foo = function() {};
</code></pre>
<p>It is common to use the same global namespace prefix throughout a project and use sub namespaces for each JavaScript file. The name of the sub namespace often matches the file's name.</p>
<p>The header of a file called <code>ns/button.js</code>could look like this:</p>
<pre><code>if (!window.ns) {
window.ns = {};
}
if (!window.ns.button) {
window.ns.button = {};
}
// attach methods to the ns.button namespace
window.ns.button.create = function() {};
</code></pre>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/1318068#13180680Answer by guitarspeller for Hidden Features of JavaScript?guitarspeller2009-08-23T08:28:39Z2009-08-23T08:28:39Z<p>Here's a simple way of thinking about 'this'. 'This' inside a function will refer to future object instances of the function, usually created with operator new. So clearly 'this' of an inner function will never refer to an instance of an outer function. </p>
<p>The above should keep one out of trouble. But there are more complicated things you can do with 'this.' </p>
<p><hr /></p>
<p>Example 1:</p>
<pre><code>
function DriveIn()
{
this.car = 'Honda';
alert(this.food); //'food' is the attribute of a future object
//and DriveIn does not define it.
}
var A = {food:'chili', q:DriveIn}; //create object A whose q attribute
//is the function DriveIn;
alert(A.car); //displays 'undefined'
A.q(); //displays 'chili' but also defines this.car.
alert(A.car); //displays 'Honda'
</code></pre>
<p><hr /></p>
<p>The Rule of This: </p>
<p>Whenever a function is called as the attribute of an object, any occurrence of 'this' inside the function (but outside any inner functions) refers to the object.</p>
<p>We need to make clear that "The Rule of This" applies even when operator new is used. Behind the scenes new attaches 'this' to the object through the object's constructor attribute.</p>
<p><hr /></p>
<p>Example 2: </p>
<pre><code>
function Insect ()
{
this.bug = "bee";
this.bugFood = function()
{
alert("nectar");
}
}
var B = new Insect();
alert(B.constructor); //displays "Insect"; By "The Rule of This" any
//ocurrence of 'this' inside Insect now refers
//to B.
</code></pre>
<p>To make this even clearer, we can create an Insect instance without using operator new.</p>
<p>Example 3:</p>
<pre><code>
var C = {constructor:Insect}; //Assign the constructor attribute of C,
//the value Insect.
C.constructor(); //Call Insect through the attribute.
//C is now an Insect instance as though it
//were created with operator new. [*]
alert(C.bug); //Displays "bee."
C.bugFood(); //Displays "nectar."
</code></pre>
<p>[*] The only actual difference I can discern is that in example 3, 'constructor' is an enumerable attribute. When operator new is used 'constructor' becomes an attribute but is not enumerable. An attribute is enumerable if the for-in operation "for(var name in object)" returns the name of the attribute.</p>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/1365822#13658226Answer by pramodc84 for Hidden Features of JavaScript?pramodc842009-09-02T04:22:59Z2009-09-02T04:22:59Z<p><strong><em>Know how many variables are expected by a function</em></strong></p>
<pre><code>function add_nums(num1, num2, num3 ){
return num1 + num2 + num3;
}
add_nums.length // 3 is the number of parameters expected.
</code></pre>
<p><strong><em>Know how many parameters are received by the function</em></strong></p>
<pre><code>function add_many_nums(){
return arguments.length;
}
add_many_nums(2,1,122,12,21,89); //returns 6
</code></pre>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/1394655#13946550Answer by vsync for Hidden Features of JavaScript?vsync2009-09-08T15:28:27Z2009-09-22T23:06:05Z<p>Well, it's not much of a feature, but it is very useful:</p>
<p>Shows selectable and formatted alerts:</p>
<pre><code>alert(prompt('',something.innerHTML ));
</code></pre>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/1416391#14163910Answer by Kris Kowal for Hidden Features of JavaScript?Kris Kowal2009-09-12T23:05:35Z2009-09-12T23:05:35Z<p>These are not <em>always</em> a good idea, but you can convert most things with terse expressions. The important point here is that not every value in JavaScript is an object, so these expressions will succeed where member access on non-objects like null and undefined will fail. Particularly, beware that typeof null == "object", but you can't null.toString(), or ("name" in null).</p>
<p>Convert anything to a Number:</p>
<pre><code>+anything
Number(anything)
</code></pre>
<p>Convert anything to an unsigned four-byte integer:</p>
<pre><code>anything >>> 0
</code></pre>
<p>Convert anything to a String:</p>
<pre><code>'' + anything
String(anything)
</code></pre>
<p>Convert anything to a Boolean:</p>
<pre><code>!!anything
Boolean(anything)
</code></pre>
<p>Also, using the type name without "new" behaves differently for String, Number, and Boolean, returning a primitive number, string, or boolean value, but with "new" these will returned "boxed" object types, which are nearly useless.</p>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/1462261#14622614Answer by Seth for Hidden Features of JavaScript?Seth 2009-09-22T19:58:49Z2009-09-22T19:58:49Z<p>My favorite trick is using <code>apply</code> to perform a callback to an object's method and maintain the correct "this" variable. </p>
<pre><code>function MakeCallback(obj, method) {
return function() {
method.apply(obj, arguments);
};
}
var SomeClass = function() {
this.a = 1;
};
SomeClass.prototype.addXToA = function(x) {
this.a = this.a + x;
};
var myObj = new SomeClass();
brokenCallback = myObj.addXToA;
brokenCallback(1); // Won't work, wrong "this" variable
alert(myObj.a); // 1
var myCallback = MakeCallback(myObj, myObj.addXToA);
myCallback(1); // Works as expected because of apply
alert(myObj.a); // 2
</code></pre>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/1505653#1505653-2Answer by x13 for Hidden Features of JavaScript?x132009-10-01T18:31:33Z2009-10-01T18:31:33Z<p>'Private' vars:</p>
<pre><code> var obj = (function() {
var privateVar = "this var is scoped to the anonymous function called";
objReturn = {
Update: function(str) { privateVar = str },
Show: function() { alert(privateVar); }
};
return objReturn;
})();
// the return object has scope to the variable 'privateVar'
// but cannot access 'privateVar' directly
obj.Show();
obj.Update("testing update");
obj.Show();
</code></pre>
<p>you could also make 'private' methods this way.
I have found this method of creating js objects useful on occasion.</p>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/1678885#16788850Answer by Himadri for Hidden Features of JavaScript?Himadri2009-11-05T07:22:13Z2009-11-05T07:22:13Z<p>If I call a javascript function in html body like below:</p>
<pre><code><html>
<head>
<title>Test Page</title>
</head>
<body>
<form action="h.html" name="a" method="post">
<input type="hidden" name="name"/>
<input type="hidden" name="name2"/>
<input type="hidden" name="name3"/>
<script language="javascript">
a.submit();
</script>
</form>
</body>
</html>
</code></pre>
<p>It will not submit the form always. But if I write some text or before the script as below.</p>
<pre><code>Please wait....
<script language="javascript">
a.submit();
</script>
</code></pre>
<p>Then the script will execute always.</p>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/1682820#16828200Answer by L. Shaydariv for Hidden Features of JavaScript?L. Shaydariv2009-11-05T19:01:50Z2009-11-05T19:01:50Z<p>Hm, I didn't read the whole topic though it's quite interesting for me, but let me make a little donation:</p>
<pre><code>// forget the debug alerts
var alertToFirebugConsole = function() {
if ( window.console && window.console.log ) {
window.alert = console.log;
}
}
</code></pre>