how to make a function
function myFunction(){
console.log('hi')
}
myFunction()
how to make a function
function myFunction(){
console.log('hi')
}
myFunction()
functions
A function is a reusable set of statements to perform a task or calculate a value.
Functions can be passed one or more values and can return a value at the end of their execution.
In order to use a function, you must define it somewhere in the scope where you wish to call it.
Function example
// Define a function that prints a stringfunction welcomeMessage() { console.log('Welcome to JavaScript');}// Call the functionwelcomeMessage();
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us