Create a function

PHOTO EMBED

Fri Apr 21 2023 14:08:16 GMT+0000 (Coordinated Universal Time)

Saved by @AlanaBF #javascript

//create function

// function --> name of function --> () {}

function getMilk() {
    //enclose all the instructions
}

//call the function
getMilk();
content_copyCOPY