Skip to content

Instantly share code, notes, and snippets.

@Melipone
Melipone / reflection.js
Created February 15, 2011 16:01
Javascript reflection
var test = function () {
function first () {
print ("first");
}
function second () {
print ("second");
}
};
// add a function to Object.prototype
Object.prototype.getOwnMethods = function(){
@Melipone
Melipone / Chapter4.js
Created February 10, 2011 17:01
Exercises in Chapter 4 of Eloquent Javascript
//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;
@Melipone
Melipone / Chapter 3
Created January 31, 2011 15:21
Exercises in Chapter 3 of Eloquent Javascript
// Exercise 3.1
function absolute (num) {
if (num >= 0)
return num;
return (- num);
}
// I realize that testing the other branch first is more efficient
@Melipone
Melipone / Chapter 2
Created January 31, 2011 15:19
Exercises in Chapter 2 of Eloquent Javascript
// 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 = "";