The answer is F7. When you click F7 it highlights key words.<span />
The Function of a header is that it makes your TEXT LOOK BIGGER
B) each person gets to contribute in their own unique way
An Object Class. Hopefully this answer is right.
function myFunction(num){
n = 0;
total = 1;
while (n < num){
total *= (num - n);
n+=1;
}
return total;
}
alert(myFunction(6));
I'm not too proficient in JavaScript but here's what the function would look like. I hope this helps!