Type the correct answer in the box. Use numerals instead of words. If necessary, use / for the fraction bar. var num2 = 32; var num1 = 12; var rem=num2 % num1; while(rem > 0) { num2 = num1; num1 =...



Type the correct answer in the box. Use numerals instead of words. If necessary, use / for the fraction bar.




var num2 = 32;


var num1 = 12;


var rem=num2 % num1;


while(rem > 0)


  {


  num2 = num1;


  num1 = rem;


  rem = num2 % num1;


  }


document.write(num1);






The output of the document.write statement at the end of this block is





Jun 02, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here