module 12 - functions | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

module 12 - functions

there was a question in this module, that I think is incorrect. the question was: What will be the output of this code? function divide(x,y) { return x/y; } divide(6,3); Answers 2 3 nothing The answer should be two (I checked this in the console as well to be sure). but the answer was nothing and I can't see why and can only assume this is a mistake.

19th Nov 2023, 7:54 PM
Duncan
3 Answers
+ 4
I would say "nothing" is correct because you never print the value. You just call the function, which returns the value. But then nothing happens with this value. . To get an output you would need to write console.log(divide(6,3));
19th Nov 2023, 8:54 PM
Denise Roßberg
Denise Roßberg - avatar
+ 2
Try this small code: function divide(x,y){ return x/y } divide(6,3) console.log(divide(4,2)) res = divide(9,3) console.log(res) divide(6,3) -> value is lost divide(4,2) -> console.log() -> output 2 divide(9,3) -> res gets 3 -> console.log() -> output 3
19th Nov 2023, 9:01 PM
Denise Roßberg
Denise Roßberg - avatar
+ 1
Denise Roßberg yes that makes sense, I was checking it in the browser console which would return a value - thanks
19th Nov 2023, 9:36 PM
Duncan