19 lines
345 B
Plaintext
19 lines
345 B
Plaintext
![]() |
include::../description.adoc[]
|
||
|
|
||
|
== Noncompliant Code Example
|
||
|
|
||
|
----
|
||
|
function computeDurationInMilliseconds() {
|
||
|
var duration = (((hours * 60) + minutes) * 60 + seconds ) * 1000 ;
|
||
|
return duration;
|
||
|
}
|
||
|
----
|
||
|
|
||
|
== Compliant Solution
|
||
|
|
||
|
----
|
||
|
function computeDurationInMilliseconds() {
|
||
|
return (((hours * 60) + minutes) * 60 + seconds ) * 1000 ;
|
||
|
}
|
||
|
----
|