Try this exercise. Fill in the missing part by typing it in.
What will be printed by the variable result
, in the following code block?
JAVASCRIPT
1function div(a, b){
2 c = b/a
3}
4
5var result = div(15, 5)
6console.log(result)
Write the missing line below.