JavaScript – הבדלי גרסאות

תוכן שנמחק תוכן שנוסף
מ קישורים פנימיים
תגיות: תו כיווניות מפורש עריכה ממכשיר נייד עריכה דרך האתר הנייד
Nicola Flame (שיחה | תרומות)
←‏דוגמה לתוכנית JavaScript: עדכון הסקריפט לגישה המומלצת
תגיות: עריכה ממכשיר נייד עריכה מיישום נייד עריכה מאפליקציית אנדרואיד
שורה 86:
// try to find a factor that is not 1.
for (let i=2; i<=sr; i+=1) {
if (n%i === 0) // is n divisible by i?
return i
}
שורה 96:
let i = document.getElementById("primetest").value; // get checked number, using DOM.
// is it a valid input?
if ( isNaN(i) || (i <= 0) || (Math.floor(i) !== i) ) {
alert("The checked object should be a whole positive number");
return
}
let factor = get_factor(i)
if (factor === 1)
alert(i + " is a prime")
else