This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var test = function () { | |
function first () { | |
print ("first"); | |
} | |
function second () { | |
print ("second"); | |
} | |
}; | |
// add a function to Object.prototype | |
Object.prototype.getOwnMethods = function(){ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Ex. 4.2 | |
function range (num) { | |
var arr = []; | |
if (isNaN(Number(num))) | |
alert ("Invalid number"); | |
else | |
for (var i=0;i<num;i++) | |
arr[i]=i; | |
return arr; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Exercise 3.1 | |
function absolute (num) { | |
if (num >= 0) | |
return num; | |
return (- num); | |
} | |
// I realize that testing the other branch first is more efficient |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Exercise 2-1 | |
// in console | |
// Exercise 2-2 | |
var init = 1; | |
var k = 1; | |
while (k++ <= 10) | |
init = init * 2; | |
print (init); | |
// Exercise 2-3 | |
var str = ""; |
NewerOlder