From f94d1ede927b43af81defe808010fd13f237c1e3 Mon Sep 17 00:00:00 2001
From: The Coding Aviator <34807532+thecodingaviator@users.noreply.github.com>
Date: Sun, 14 Oct 2018 03:06:58 +0530
Subject: [PATCH] Fix(guide): Add ES6 introduction to JS certification section
---
.../es6/index.md | 12 +++++-------
1 file changed, 5 insertions(+), 7 deletions(-)
diff --git a/client/src/pages/guide/english/certifications/javascript-algorithms-and-data-structures/es6/index.md b/client/src/pages/guide/english/certifications/javascript-algorithms-and-data-structures/es6/index.md
index 2cf3c38fad..860f60dcd4 100644
--- a/client/src/pages/guide/english/certifications/javascript-algorithms-and-data-structures/es6/index.md
+++ b/client/src/pages/guide/english/certifications/javascript-algorithms-and-data-structures/es6/index.md
@@ -3,11 +3,9 @@ title: ES6
---
## ES6
-This is a stub. Help our community expand it.
+ES6 also known as ECMAScript6 or ES2015, is the latest widely accepted sets of rules and conventions laid out and standardized by Ecma International. Various new features such as constant value variables and arrow functions have been introduced in this new version. Major web browsers support some features of ES6. However, it is possible to use a transpiler to convert ES6 code into ES5, which is better supported on most browsers.
-This quick style guide will help ensure your pull request gets accepted.
-
-
-
-#### More Information:
-
+ #### More Information:
+
+1. [Wikipedia | Ecma International](https://en.wikipedia.org/wiki/Ecma_International)
+2. [Wikipedia | ECMAScript](https://en.wikipedia.org/wiki/ECMAScript)