From 2ac548ef9cbb1c4770d3d9c23ed9a05a2635fa21 Mon Sep 17 00:00:00 2001 From: Kouka Date: Mon, 24 Mar 2025 20:07:39 +0200 Subject: [PATCH] Fixed explanation of JavaScript built-in functions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Refined the description of JavaScript’s built-in functions that are globally available or tied to specific objects. Clarified that objects like Array, String, and Date provide built-in methods for efficient data manipulation. --- .../content/built-in-functions@s8wUJivWmetysJ8bt9FBC.md | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/data/roadmaps/javascript/content/built-in-functions@s8wUJivWmetysJ8bt9FBC.md b/src/data/roadmaps/javascript/content/built-in-functions@s8wUJivWmetysJ8bt9FBC.md index c0682e274..89d706ab9 100644 --- a/src/data/roadmaps/javascript/content/built-in-functions@s8wUJivWmetysJ8bt9FBC.md +++ b/src/data/roadmaps/javascript/content/built-in-functions@s8wUJivWmetysJ8bt9FBC.md @@ -1,10 +1,6 @@ # Built in functions -- JavaScript provides a variety of built-in functions that help perform common tasks efficiently. These functions are available globally or within specific objects and do not require explicit definition. - -- For example, functions like parseInt(), setTimeout(), and Math.random() are built-in and can be used directly. Additionally, JavaScript objects such as Array, String, and Date come with their own built-in methods, allowing powerful operations on data structures. - -- Understanding built-in functions helps streamline development by leveraging JavaScript’s core capabilities without reinventing the wheel. +JavaScript offers a variety of built-in functions that simplify common tasks, available globally or within specific objects without requiring explicit definition. Functions like parseInt(), setTimeout(), and Math.random() can be used directly, while objects like Array, String, and Date include built-in methods for efficient data manipulation. Understanding these functions enhances development by leveraging JavaScript’s core features without reinventing the wheel. Visit the following resources to learn more: