Programming Basic
5 main pillars of programming.
They are :
Variable
var name = "hello javascript"
Loop:
for(let i = 0; i < 5; i++){
console.log(i)
}
Condition:
if( 5 < 6 ){
console.log('five is smaller then six')
}
Function:
function myFunc(){...
alhasib.hashnode.dev1 min read