Week 2 Exercise 1
001window.onload = function(){ 002 let weight = 85; 003 if(weight >= 80 && weight <=100) 004 { 005 console.log("Well done, you are doing well with your diet!"); 006 } 007 008}
This site will be updated live during the sessions
001window.onload = function(){ 002 let weight = 85; 003 if(weight >= 80 && weight <=100) 004 { 005 console.log("Well done, you are doing well with your diet!"); 006 } 007 008}