xxxxxxxxxx
20
/***********************************************************************************
NAME: Zenek Chapman
DATE: Sept 24
CLASS: Computer science 30
PROGRAM DESCRIPTION: Lesson 2 Programming Problems
*************************************************************************************/
//posNeg
function posNeg (a,b,negative){
if (a < 0 && b > 0 || b < 0 && a > 0 ){
console.log(true)
}
else if (negative == true){
console.log(true)
}
else{
console.log(false)
}
}
posNeg (1,1,true)