JavaScript Tutorial 45 - What is JSON Format in JavaScript | Programming For Beginners

JavaScript Tutorial 45 - What is JSON Format in JavaScript | Programming For Beginners

39 View

JavaScript Tutorial 45 - What is JSON Format in JavaScript | Programming For Beginners
In this video by Programming for beginners we will see JavaScript Tutorial 45 - What is JSON Format in JavaScript
JavaScript is a lightweight, cross-platform, single-threaded, and interpreted compiled programming language. JavaScript is the world's most popular programming language and must learn language to become a web developer. You can use JavaScript in frontend and backend technologies as well. This JavaScript tutorial series of JavaScript course will help you to build the foundation for you to become a better web developer.

JSON is a format for storing and transporting data.
JSON is often used when data is sent from a server to a web page

What is JSON?
- JSON stands for JavaScript Object Notation
- JSON is a lightweight data interchange format
- JSON is language independent
- JSON is "self-describing" and easy to understand

Example:
{
"employees":[
{"firstName":"John", "lastName":"Doe"},
{"firstName":"Anna", "lastName":"Smith"},
{"firstName":"Peter", "lastName":"Jones"}
]
}

- JSON Data - A Name and a Value
- JSON Objects
- JSON Arrays

- Converting a JSON Text to a JavaScript Object

==========

JavaScript Tutorial Playlist:
https://www.youtube.com/playlist?list=PLhyraTKIsw58sm538sUXpYByPScqBj6su

HTML CSS Projects Playlist:
https://www.youtube.com/playlist?list=PLhyraTKIsw59GaxKI1L-PJuaK6HNLjOa0

Complete CSS Tutorial for Beginners Playlist:
https://www.youtube.com/playlist?list=PLhyraTKIsw59LnnxzT1-TAKYU4_rf_UW1

Complete HTML Tutorial for Beginners Playlist:
https://www.youtube.com/playlist?list=PLhyraTKIsw5_Po6C1xg3lgNNIY0Hl_8tR

Python Programs for Beginners Playlist:
https://youtube.com/playlist?list=PLhyraTKIsw5-Hfkk-pGFmtyn1xYqKdKw8

Python Tutorial for Beginners Playlist:
https://youtube.com/playlist?list=PLhyraTKIsw5_k9AyBNZh6YZhkX4eqP7Je

Java Tutorial for Beginners Playlist:
https://youtube.com/playlist?list=PLhyraTKIsw5_WemVMvshNm-0aC7zfISCO

All Java Programs Playlist:
https://youtube.com/playlist?list=PLhyraTKIsw59nQJKvZTKmNK2aMxHwvLOa

What is JavaScript ?
JavaScript is a lightweight, cross-platform, single-threaded, and interpreted compiled programming language. It is also known as the scripting language for webpages. It is well-known for the development of web pages, and many non-browser environments also use it.

JavaScript is a weakly typed language (dynamically typed). JavaScript can be used for Client-side developments as well as Server-side developments. JavaScript is both an imperative and declarative type of language. JavaScript contains a standard library of objects, like Array, Date, and Math, and a core set of language elements like operators, control structures, and statements.

- Client-side: It supplies objects to control a browser and its Document Object Model (DOM). Like if client-side extensions allow an application to place elements on an HTML form and respond to user events such as mouse clicks, form input, and page navigation. Useful libraries for the client side are AngularJS, ReactJS, VueJS, and so many others.

- Server-side: It supplies objects relevant to running JavaScript on a server. For if the server-side extensions allow an application to communicate with a database, and provide continuity of information from one invocation to another of the application, or perform file manipulations on a server. The useful framework which is the most famous these days is node.js.

- Imperative language – In this type of language we are mostly concerned about how it is to be done. It simply controls the flow of computation. The procedural programming approach, object, oriented approach comes under this as async await we are thinking about what is to be done further after the async call.

- Declarative programming – In this type of language we are concerned about how it is to be done, basically here logical computation requires. Her main goal is to describe the desired result without direct dictation on how to get it as the arrow function does.

How to Link JavaScript File in HTML ?
JavaScript can be added to HTML file in two ways:

Internal JS: We can add JavaScript directly to our HTML file by writing the code inside the script tag. The script tag can either be placed inside the head or the body tag according to the requirement.
External JS: We can write JavaScript code in another files having an extension.js and then link this file inside the head tag of the HTML file in which we want to add this code.

YouTube Gears:
Microphone: https://amzn.to/3iIk5K3
Mouse: https://amzn.to/35irmNF
Laptop: https://amzn.to/3iG0jyD

#JavaScriptTutorial #JavaScript #JavaScriptCourse #webdevelopment #programmingforbeginners

============================
LIKE | SHARE | COMMENT | SUBSCRIBE

Thanks for watching :)