Assignment Questions
Assignment Questions
Qs 1.
Create a number variable num with some value now , print good if the number is divisible by 10 and print “bad if it is not
code
//let num = 9;
let num = 20;
if( num % 10 == 0){
console.log("good");
}else{
console.l...
javascript-part-2.hashnode.dev3 min read