function hello (){ console.log("hello") } hello() // ---------------------------------------------------------------- function name (){ console.log("navjot singh") } name() // -------------------------------------------------------------------- function print (){ for(let i = 1; i<=5; i++){ console.log(i) } } print() // ------------------------------------------------------------------------------ function practice(){ for(let i = 1; i<10; i++){ console.log(i) } } practice() // --------------------------------------------------------------- function isa (){ let age = 69 if(age<18){ console.log("you are not eligible") } else if(age>70){ console.log("your age is old") } else{ console.log("you are eligible") } } isa(17) // ---------------------------------------------------------- // Ho...