How to increment the value on each function call ?
Suppose i had a function called
addRow()
Code: Select all
//js code
addRow(row)
{
var i = 0;
alert(i);
}when clicked first time it should alert 0, 2nd time => 2 3rd time => 3..
I hope you got my question, awaiting for your valueable help.
Thanks in advance to all of you