JS Examples
The with statement example
December 22nd, 2016
<!DOCTYPE html>
<html>
<body>
<script>
var area =500;
va...
Example of self-executing anonymous function
December 22nd, 2016
<!DOCTYPE html>
<html>
<body>
<script>
//Anonymous funct...
Example of nested anonymous function
December 22nd, 2016
<!DOCTYPE html>
<html>
<body>
<script>
//Passing functio...
Arguments passing to anonymous function
December 22nd, 2016
<!DOCTYPE html>
<html>
<body>
<script>
(function(x, y){...
Recursive function calculating power if a number
December 22nd, 2016
<!DOCTYPE html>
<html>
<body>
<input type="text"...