From 88da3eddc7e54bb9dd26e75acca1f061443c1ec9 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Thu, 16 Nov 2017 20:44:53 +0100 Subject: [PATCH] Add js standards --- standards/js.md | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 standards/js.md diff --git a/standards/js.md b/standards/js.md new file mode 100644 index 0000000..1b63c41 --- /dev/null +++ b/standards/js.md @@ -0,0 +1,9 @@ +# Js + +## Variable scope + +Variables should be defined with the scope in mind. `const` and `let` are the preferred definitions. + +## Deprecated functions and variables + +* `eval` \ No newline at end of file