Skip to content

Commit d9a23a6

Browse files
committed
Updated Introduction to JavaScript
1 parent 4baa035 commit d9a23a6

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

introduction.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
JavaScript is a programming language that powers the dynamic behavior on most websites. Alongside HTML and CSS, it is a core technology that makes the web run. It is a scripting language.
44

5+
6+
-- Camel case
7+
It is the practice of writing phrases such that each word or abbreviation in the middle of the phrase
8+
begins with a capital letter, with no intervening spaces or punctuation. i.e every First Letter of every Word Except the First Word is UpperCase.
9+
Example: let camelCase. We Write Js codes in camel Case
10+
11+
512
-- Console.log()
613
The console.log() method is used to log or print messages to the console. It can also be used to print objects and other info.
714
Important: Console here is an Object. We shall discuss about these Objects later.

0 commit comments

Comments
 (0)