vote up 202 vote down star
321

What "Hidden Features" of JavaScript do you think every programmer should know?

After having seen the excellent quality of the answers to the following questions I thought it was time to ask it for JavaScript.

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.

flag
1  
Sure, pessimist. :) I'd considered making this a community question. Also, after you get a certain number of points it's all diminishing returns. – Allain Lalonde Sep 14 '08 at 18:37
1  
I've been writing JavaScript professionally for 10 years now and I learned a thing or three from this thread. Thanks, Alan! – Andrew Hedges Sep 20 '08 at 7:39
show 4 more comments

98 Answers

prev 1 2 3 4
vote up 0 vote down

There is also an almost unknown JavaScript syntax:

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

More about this here.

link|flag
vote up 0 vote down

As Marius already pointed, you can have public static variables in functions.

I usually use them to create functions that are executed only once, or to cache some complex calculation results.

Here's the example of my old "singleton" approach:

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();

As you may see, in both cases the constructor is run only once.

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 Lightbox). 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 :)

link|flag
vote up 0 vote down

An interesting way to make Singleton-like objects with public / private methods (I saw this once in a jQuery plugin):

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	
	}
}();

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.

link|flag
show 1 more comment
vote up 0 vote down

Hm, I didn't read the whole topic though it's quite interesting for me, but let me make a little donation:

// forget the debug alerts
var alertToFirebugConsole = function() {
	if ( window.console && window.console.log ) {
		window.alert = console.log;
	}
}
link|flag
vote up 0 vote down

function can have methods.

I use this pattern of AJAX form submissions.

var fn = (function() {
		var ready = true;
		function fnX() {
			ready = false;
			// AJAX return function
			function Success() {
				ready = true;
			}
			Success();
			return "this is a test";
		}

		fnX.IsReady = function() {
			return ready;
		}
		return fnX;
	})();

	if (fn.IsReady()) {
		fn();
	}
link|flag
vote up -1 vote down

If I call a javascript function in html body like below:

<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>

It will not submit the form always. But if I write some text or   before the script as below.

Please wait....
 <script language="javascript">
    a.submit();
    </script>

Then the script will execute always.

link|flag
vote up -2 vote down

'Private' vars:

    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();

you could also make 'private' methods this way. I have found this method of creating js objects useful on occasion.

link|flag
vote up -3 vote down

JavaScript does have block scope! Use with and JSON:

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);

It produces this output:

x = 'inner scope modified'
x = 'outer scope'

:)

link|flag
show 2 more comments
prev 1 2 3 4

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.