I have found this script on the Mozilla Development Network as an example.
function isPrime(element, index, array) {
var start = 2;
while (start <= Math.sqrt(element)) {
if (element % start++ < 1) {
return false;
}
}
return element > 1;
}
Could you explain me what the double "+" means right after the "start"? Will it change the value of the start variable?
Thank you