From 3241793fb6e98bc3d9a13f59d5cb411de8658aa7 Mon Sep 17 00:00:00 2001 From: Rishabh044 <87444092+Rishabh044@users.noreply.github.com> Date: Sun, 2 Oct 2022 16:58:30 +0530 Subject: [PATCH] Updated 101-explicit-type-casting.md (#1998) * Update 101-explicit-type-casting.md * Update content/roadmaps/106-javascript/content/103-javascript-type-casting/101-explicit-type-casting.md Co-authored-by: Kamran Ahmed --- .../101-explicit-type-casting.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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