forked from aayushyadavz/JavaScript-Full-Notes
-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dataypes Summary #1
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Learned about Primitive & Non Primitive Data Types with examples & Checked there typeof.
Learned about Stack And Heap memory storage. A Little bit complex topic.
Added a folder called go_in_readme.md for some textbook photos of the JS notes.
Learned about new syntax of concatinating strings, accessing methods of strings e.t.c.
Learned about Number in JS and what are the methods related to numbers, learned about Maths in JS and Methods related to maths.
Learned about Date and Time in Javascript and some methods related to Dates (Converting it into more readable format), declaring specific date, time stamps, converting from millisec to sec e.t.c.
Learned about Declaring, accessing, using different methods, converting to strings all in Arrays. Also learned some complex ones like splice and slice.
In this lesson I've learned about merging 2, 3 or multiple arrays, spreading arrays into an single array, converting string, objects e.t.c into an array.
Learned about Object in JS and Object literals and constructors, How to declare object, accessing object, changing values of keys, adding functions, symbols, arrays in Object.
Learned about constructors method, objects into objects, combining objects, array of objects and some important syntax to access objects.
Learned about Destructuring objects and had a intro of JSON, API.
Modified definations of De-structuring objects, JSON & API after understanding these.
Learned about functions, how to add 2 numbers in a function and get there result in return, what happens if we don't pass arguments in function call.
Learned about functions, how to use rest operator, how to use objects with functions and arrays with functions.
Learned about Scope in Javascript that what is Global scope and what is block scope, how values of block scope treated outside the curly braces, difference between Global and block scope.
Learned about Nested Scope & some interesting concepts related to functions executions.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Learned about Primitive & Non Primitive Data Types with examples & Checked there typeof.