6 lines
159 B
Plaintext
6 lines
159 B
Plaintext
![]() |
[source,javascript]
|
||
|
----
|
||
|
function divide(numerator, denominator) {
|
||
|
return numerator / denominator; // FIXME denominator value might be 0
|
||
|
}
|
||
|
----
|