diff --git a/content/roadmaps/100-frontend/content/110-build-tools/102-linters-formatters/100-prettier.md b/content/roadmaps/100-frontend/content/110-build-tools/102-linters-formatters/100-prettier.md index 699520213..f6e700634 100644 --- a/content/roadmaps/100-frontend/content/110-build-tools/102-linters-formatters/100-prettier.md +++ b/content/roadmaps/100-frontend/content/110-build-tools/102-linters-formatters/100-prettier.md @@ -1,6 +1,7 @@ # Prettier -Prettier is an opinionated code formatter with support for JavaScript, HTML, CSS, and more. +Prettier is an opinionated code formatter with support for JavaScript, HTML, CSS, YAML, Markdown, GraphQL Schemas. By far the biggest reason for adopting Prettier is to stop all the on-going debates over styles. Free Content Prettier Website +Why Prettier 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 c66762ca9..a6c996ddd 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 @@ -3,8 +3,8 @@ 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 Type Conversion Type casting Data Type Conversion +Type conversion +What is typecasting in JavaScript