Just learning to code JavaScript, trying to learn if statements but my code isn\'t working:
var car = 8; if (car = 9) { document.write(\"your code is not wor
If you want to compare if car is equal to 9, then you have to use code
if(car === 9){ /*Your code goes here*/ }