Skip to content

Instantly share code, notes, and snippets.

@walidmahade
Last active October 30, 2020 03:01
Show Gist options
  • Save walidmahade/a0f5531f47151701b975542e99d44e29 to your computer and use it in GitHub Desktop.
Save walidmahade/a0f5531f47151701b975542e99d44e29 to your computer and use it in GitHub Desktop.
function print_my_name() {
// code to execure
console.log("Mahade");
}
function multiply_by_two(your_number) {
// code to execure
console.log( your_number * 2 ); // multiply given number with two, then print in console
}
// call the functions and pass a value
multiply_by_two(3)
// will return 6 in the console
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment