jweinst1
2/3/2016 - 1:09 AM

continuing.js

//testing if statements
//continuing method

function test(obbalo) {
    var one = 6;
    if(one==6) {
        one += 7;
    }
    return one + 4;
}