From 3634ee025de2bdb1745dcedefa7b050f47132ffb Mon Sep 17 00:00:00 2001 From: Darshan Vasani <109815626+dpvasani@users.noreply.github.com> Date: Sun, 25 Jun 2023 23:10:54 +0530 Subject: [PATCH 01/21] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 851e23e..acfb2cc 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # JavaScript-Notes [![MasterHead](https://repository-images.githubusercontent.com/588181932/e36ec678-7984-4cdd-8e4c-a3932772ff8e)](https://dkrupali56.io) + +## Made By Dp Vasani From 05a198c8737caa60a25179ec6887f1eab89c7cc2 Mon Sep 17 00:00:00 2001 From: Darshan Vasani <109815626+dpvasani@users.noreply.github.com> Date: Sat, 1 Jul 2023 21:05:18 +0530 Subject: [PATCH 02/21] Add files via upload --- Ch 6 JavaScript In Browser.js | 244 ++++++++++++++++++---------------- 1 file changed, 132 insertions(+), 112 deletions(-) diff --git a/Ch 6 JavaScript In Browser.js b/Ch 6 JavaScript In Browser.js index 935f9e6..ed88757 100644 --- a/Ch 6 JavaScript In Browser.js +++ b/Ch 6 JavaScript In Browser.js @@ -64,6 +64,10 @@ // The console object in JavaScript provides a set of methods that allow developers to interact with the browser's console. These methods are useful for logging messages, debugging code, and monitoring the execution of JavaScript code. Here are some commonly used methods of the console object along with examples: +// console.log(conslole) -> List All Console Method + +// External JS is Better To Use -> Sepration Of Concerns & Browser Caching -> Browser Save That FIle SO We Not Load Again It + // log(): Logs a message to the console. // console.log('Hello, World!'); // Output: Hello, World! @@ -129,115 +133,131 @@ // console.time('Timer'); // // Code block to measure execution time // console.timeEnd('Timer'); // Output: Timer: