diff --git a/content/roadmaps/106-javascript/content/103-javascript-type-casting/101-explicit-type-casting.md b/content/roadmaps/106-javascript/content/103-javascript-type-casting/101-explicit-type-casting.md
index 5f18c00d3..5c3e3637e 100644
--- a/content/roadmaps/106-javascript/content/103-javascript-type-casting/101-explicit-type-casting.md
+++ b/content/roadmaps/106-javascript/content/103-javascript-type-casting/101-explicit-type-casting.md
@@ -1 +1,7 @@
-# Explicit type casting
\ No newline at end of file
+# Explicit Type Casting
+
+Type casting means transferring data from one data type to another by explicitly specifying the type to convert the given data to. Explicit type casting is normally done to make data compatible with other variables. Examples of typecasting methods are `parseInt()`, `parseFloat()`, `toString()`.
+
+Free Content
+Type conversion
+What is typecasting in JavaScript