17 lines
530 B
Plaintext
Raw Normal View History

2020-06-30 10:16:44 +02:00
Debug statements are always useful during development. But include them in production code - particularly in code that runs client-side - and you run the risk of inadvertently exposing sensitive information, slowing down the browser, or even erroring-out the site for some users.
== Noncompliant Code Example
----
console.log(password_entered); // Noncompliant
----
include::../see.adoc[]
ifdef::rspecator-view[]
== Comments And Links
(visible only on this page)
include::../comments-and-links.adoc[]
endif::rspecator-view[]