Primitives and Objects in JavaScript | Ultimate JavaScript Course #4

preview_player
Показать описание
This course is also available in the Hindi Language on @CodeWithHarry channel. JavaScript often abbreviated JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for web page behavior, often incorporating third-party libraries. All major web browsers have a dedicated JavaScript engine to execute the code on users' devices.
JavaScript is a high-level, often just-in-time compiled language that conforms to the ECMAScript standard. It has dynamic typing, prototype-based object orientation, and first-class functions. It is multi-paradigm, supporting event-driven, functional, and imperative programming styles. It has application programming interfaces (APIs) for working with text, dates, regular expressions, standard data structures, and the Document Object Model (DOM).

The ECMAScript standard does not include any input/output (I/O), such as networking, storage, or graphics facilities. In practice, the web browser or other runtime system provides JavaScript APIs for I/O.

Although Java and JavaScript are similar in name, syntax, and respective standard libraries, the two languages are distinct and differ greatly in design.
JavaScript is the world's most popular programming language.
JavaScript is the programming language of the Web.
JavaScript is easy to learn.
This tutorial will teach you JavaScript from basic to advanced.
Рекомендации по теме
Комментарии
Автор

Hey ... Data type object is just like structure and union in c language...

maanpatel
Автор

this java script is reaaly helpfull for us

sahilcreater
Автор

how the hell did i not find this?!?!
this is excatly what i needed
i had to watch you hindi version with subtitles

cubeheadii
Автор

Harry Bhai Hindi wale channel pr 7th Video kab aa rahi hai ? Bhaut Excited hu mai tho JS ko leke

Aditya_Vyas
Автор

2:44 harry bhai why it show output as number, its output should comes as integer ???

Edited :- 2:52 ~> 2:44

eio
Автор

12:48

const user_data = {
"Name" : "Irfan",
"Phone No." : 1234567890,
"Marks" : 100
}

SciencewithIrfan
Автор

Thank you so much Harry bro. Please 🥺🥺 upload videos daily.

monicabattacharya
Автор

let ledger = {
name: "sangavi",
"phone number": 1234567910,
marks: 95
}
console.log (ledger.name)
console.log (ledger["phone number"])
console.log (ledger.marks)
thanks for this video can u put continuity in java in english. bcoz more videos are there in hindi (codewithharry channel). we hardly need them in english. thanks for ur valuable notes.

sangaviravichandran
Автор

Sir please make Java language in English

Programmerdeepikasain
Автор

let stud = {
name:"Ramji Seth",
marks:95,
phno:1111000010
}

console.log(stud.name, stud.phno, stud["marks"])

peacethegamer
Автор

Let student{
Name:"mayur",

Marks:99,
}

padmam
Автор

Please upload video daily 20minutes at least

ahmedmahamed
Автор

const student = {
name : "harry",
name2 : "harry with program",
phone: 1234567890,
marks: 100
}
console.log(student) // it will print name, phone, marks
console.log(student.name) // it will print name
console.log(student["name2]) // it will print name2
console.log(student.name2) // it will get error becz name2 key has space between harry with program

#programwithharry #quize

sbmt