Here is a sneak peek at the new Codebots How To Series. Keep your eyes peeled, this awesome tech series is soon to be released. Watch this space 👀 #howto#series#technology#code#development
Day2
*functions*
Functions are pieces of code that performs actions
e.g alert() , prompt()
You can also create your own functions(declaration)
function sayHello() {
alert("Hello world");
}
sayHello();
#100DaysOfCode#CodeNewbie#code#javascript