Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //This is what a function looks like
- var divideByThree = function (number) {
- var val = number / 3;
- console.log(val);
- };
- divideByThree(9);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement