Latest Tutorials

The with statement example

<!DOCTYPE html> <html> <body> <script> var area =500; va...

Example of self-executing anonymous function

<!DOCTYPE html> <html> <body> <script> //Anonymous funct...

Example of nested anonymous function

<!DOCTYPE html> <html> <body> <script> //Passing functio...

Arguments passing to anonymous function

<!DOCTYPE html> <html> <body> <script> (function(x, y){...

Recursive function calculating power if a number

<!DOCTYPE html> <html> <body> <input type="text"...

Example of a closure function

<!DOCTYPE hmtl> <html> <body> <script> var alertMsg =...

Block-scope mimicking

<!DOCTYPE html> <html> <body> <script> function getAddr(...

Privileged methods inside a constructor

<!DOCTYPE html> <html> <body> <script> function AccountD...

Privileged methods through module patterns

<!DOCTYPE html> <html> <body> <script> var AccountDetail...

Window object example

<!DOCTYPE html> <html> <head> <style type="text/...