diff --git a/content/roadmaps/106-javascript/content/108-javascript-expressions-and-operators/108-comma-operators.md b/content/roadmaps/106-javascript/content/108-javascript-expressions-and-operators/108-comma-operators.md
index 3c11d6fb4..cef7550f5 100644
--- a/content/roadmaps/106-javascript/content/108-javascript-expressions-and-operators/108-comma-operators.md
+++ b/content/roadmaps/106-javascript/content/108-javascript-expressions-and-operators/108-comma-operators.md
@@ -1 +1,7 @@
-# Comma operators
\ No newline at end of file
+# Comma operators
+
+The comma operator (`,`) evaluates each of its operands (from left to right) and returns the value of the last operand. This lets you create a compound expression in which multiple expressions are evaluated, with the compound expression's final value being the value of the rightmost of its member expressions. This is commonly used to provide multiple parameters to a `for` loop.
+
+Free Content
+
+Comma operator