könnt ihr mir helfen, folgendes script fertig zu schrieben?(ist leider auf english)
thx im voraus:handsdown:
Code:
// This function should increment the start value by 1
// the number of times specified.
function increment(start, timesToIncrement) {
// Add the appropriate code here, this time using a
// for loop. This time, you must also write in the loop
// body.
var times
for( ) {
}
return start;
}