Sunday, January 31, 2010

JavaScript Loop Array

Right order

for(var i=0,len=arr.length; value=arr[i], i
 alert(i =") "+ value);
}

Reversed Order

for(var i=arr.length-1; value=arr[i], i>=0; i--) {
 alert(i =") "+ value);
}

Friday, August 14, 2009

JavaScript replace

Syntax
stringObject.replace(findstring,newstring)

Parameter Description
findstring Required.
Specifies a string value to find. To perform a global search add a 'g' flag to this parameter and to perform a case-insensitive search add an 'i' flag

newstring Required.

Specifies the string to replace the found value from findstring



Till Next Time

Thursday, August 13, 2009

Welcome to JavaScript 101

Hi, My name is John Minkjan and I'm a senior BI-consultant at CIBER in the Netherlands. I reserverd a couple of ...101 blogspots. At the moment I'm mostly active on OBIEE101. I will start posting here as soon as my focus in back on JavaScript.

Till Next Time John