This code tests the values of a and b using if else statements, and outputs something into the console based on what the numbers are. I accomplished this by using <, >, and == in if and else statements, and using console.log() to output a response into the console.


Original Lesson

%%js
var a = 32
var b = 16
if (a>b){
    console.log("a>b")
}
else if(a<b){
    console.log("a<b")
}
else if(a==b){
    console.log("a=b")
}