//This program calculates how many times a number is divisible by 2.
//This is the number and the amount of times its been split into 2.
    let Num=64
    let divisible=0
//This is the ternary operator, it basically asks a question.
    Num % 2 === 0 ?
    divisible=divisible++ : document.write(divisible);
    Num/=2;
    Num % 2 === 0 ?
    divisible=divisible++ : document.write(divisible);
    num/=2
    Num % 2 === 0 ?
    divisible=divisible++ : document.write(divisible);
//Once the statement evaluates to false it writes the amount of times the number has been divided by 2 into the document.
 
     
     
    