- Introducing Functions in JavaScript 4:08
- Introducing Functions Review 5 questions
- Create and Call a Function 4:57
- Creating a Function 3 objectives
- Return a Value from a Function 4:32
- Return a Value from a Function 3 objectives
- Using Multiple return Statements 6:58
- Function Return Values Review 5 questions
Quiz Question 1 of 5
Can a JavaScript function return several values at once? For example:
function getWeekdays() {
return 'Mon', 'Tues', 'Wed', 'Thurs', 'Fri';
}
getWeekdays();
Choose the correct answer below: