From 99e15b5a9b3bc1198f780c4819831544efddb4ee Mon Sep 17 00:00:00 2001
From: Aakarshan Thapa <63531478+akarsanth@users.noreply.github.com>
Date: Sun, 10 Mar 2024 16:01:41 -0400
Subject: [PATCH] Improve 102-typeof-operator.md definition

Improved the definition of typeof operator.
---
 .../content/102-javascript-datatypes/102-typeof-operator.md     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/data/roadmaps/javascript/content/102-javascript-datatypes/102-typeof-operator.md b/src/data/roadmaps/javascript/content/102-javascript-datatypes/102-typeof-operator.md
index a273c2ca3..3535dbb96 100644
--- a/src/data/roadmaps/javascript/content/102-javascript-datatypes/102-typeof-operator.md
+++ b/src/data/roadmaps/javascript/content/102-javascript-datatypes/102-typeof-operator.md
@@ -1,6 +1,6 @@
 # TypeOf Operator
 
-You can use the typeOf operator to find the data type of a JavaScript variable.
+You can use the typeOf operator to find the data type of a JavaScript variable. It returns a string indicating the type of provided operand's value.
 
 Visit the following resources to learn more: