Logo

Programming-Idioms

History of Idiom 123 > diff from v9 to v10

Edit summary for version 10 by fadamakis:
New JS implementation by user [fadamakis]

Version 9

2017-12-29, 15:38:23

Version 10

2019-09-26, 18:09:58

Idiom #123 Assert condition

Verify that predicate isConsistent returns true, otherwise report assertion violation.
Explain if the assertion is executed even in production environment or not.

Idiom #123 Assert condition

Verify that predicate isConsistent returns true, otherwise report assertion violation.
Explain if the assertion is executed even in production environment or not.

Code
console.assert(_isConsistent);