// Note:-in every programming language value assign ,value update or modify,value delete based on logic this is common pattern // 1)00:00 intro about objects. // 2) 04:00 ways to create objects. 5ways. // 3)04:30 object literal. To create object // 4)12:00 how to access object values. Two ways are present. (If i want a sixth name how can I get if we take example if we created multible object like json from that we want sixth object name what we can do if we take array by using index value we can access any value by using index position. // 5)16:40 note point for access property value we want to give quotes for name. // 6)18:50 how to add or modify elements to a object. // 7)26:20 new object method create and update values. // 8)30:50 new operator with constructor function. // 9)37:20 new operator with constructor function practical code on vs studio. Here we are creating multible objects with sing constructor function stoured in different variable value. // 10)41:50 adding new name to the object method. // 11)43:55 objects create method. // 12)52:50 method in objects Method means create a function inside object and assign to key. // 13)57:00 difference between outside function and object function . // 14)58:20 for in // 15)01:03:10 for print keys from object // create empty object //ading properties to the object (note if object exist we can able to add properties ) let movies= { } // console.log(typeof(movies)) //assign values to the object movies.ntr="rrr"; // movies.hero.telugu="ntr"; -- for this method we can cannot able to set the properties movies.hero="ntr"; // console.log(movies) //how we can access the element values from the object // method-1 var a= movies['ntr'] // console.log(a) // method-2 var b =movies.hero // console.log(b) //modify the object movies.hero="vijay devara konda" // console.log(movies.hero) //adding new propery to a object movies["industry"]="telugu"; movies.cinema="telugu hit" // console.log(movies); //method 2 new Object constructor method. let murali= new Object() murali.village="pathagunta"; // murali["brother"]="lokesh"; // console.log(murali) // methos-3 new object constructor function method (this method is used for same property name structure we use different type of values) // here we follow two steps 1)function create and function call method // method-3 create function or function definition function user(name,place,pin) { this.name=name; this.place=place; this.pin=pin; let a=20; let b=50; } // function call let user1=new user("jegini","pathagunt","517569") // console.log(user1) //update the values and add the values to the constructor function method let user2 =new user("xyz","abc","4356788") user2.phonenum="988988887838"; user2["type"]="object" // console.log(user2) // method-4 Object.create method code not practice. //methods in objects function mass(name,place) { this.name=name; this.place=place; this.login=function(){ console.log("hello" + this.name+ "welcome to the" + this.place) } } let mass1=new mass("lokesh","pathaguta") console.log(mass1) console.log(mass1.login()) var checking={ place:"pathagunt", pin:"517569" }
Note:-in every programming language value assign ,value update or modify,value delete based on logic this is common pattern 1)00:00 intro about objects. 2) 04:00 ways to create objects. 5ways. 3)04:30 object literal. To create object 4)12:00 how to access object values. Two ways are present. (If i want a sixth name how can I get if we take example if we created multible object like json from that we want sixth object name what we can do if we take array by using index value we can access any value by using index position. 5)16:40 note point for access property value we want to give quotes for name. 6)18:50 how to add or modify elements to a object. 7)26:20 new object method create and update values. 8)30:50 new operator with constructor function. 9)37:20 new operator with constructor function practical code on vs studio. Here we are creating multible objects with sing constructor function stoured in different variable value. 10)41:50 adding new name to the object method. 11)43:55 objects create method. 12)52:50 method in objects Method means create a function inside object and assign to key. 13)57:00 difference between outside function and object function . 14)58:20 for in 15)01:03:10 for print keys from object
a small suggestion sister meeru same edhey vedios english loo kaani chesivunttey mee channel vereey level looo undhunuu sister any way nice concepts explanation keep going like this
Akka question ki ela code rayalo explain chey pls You have an array of numbers in js .how would you use the array methods to find the sum of all even numbers in the array this is the question
Take one global variable sum =0,You have to iterate each element of array check if element %2 ==0 then add that element to existing sum like sum= sum+ele
Object.keys or object.values ichinapudu output loo keys Array loo enduku store avutunayi ? I mean output object enduku radhu because manam Object ani keyword use cheystunam kadha mari Array enduku vastundi ?
Constructer function call lo vunna values anni constructer function lo ki velthayi kadha medam name assigned to value" abc" enka this Ane keyword endhuku medam
Enti madam ki vacha ani aduguthunnava asalu ninnu evadu chudamannadu chusthe chudu lekapothe ledhu madam mathram super ga cheputhadhi a learned a lot from this Channels plz respect our mam ❤
// Note:-in every programming language value assign ,value update or modify,value delete based on logic this is common pattern
// 1)00:00 intro about objects.
// 2) 04:00 ways to create objects. 5ways.
// 3)04:30 object literal. To create object
// 4)12:00 how to access object values. Two ways are present. (If i want a sixth name how can I get if we take example if we created multible object like json from that we want sixth object name what we can do if we take array by using index value we can access any value by using index position.
// 5)16:40 note point for access property value we want to give quotes for name.
// 6)18:50 how to add or modify elements to a object.
// 7)26:20 new object method create and update values.
// 8)30:50 new operator with constructor function.
// 9)37:20 new operator with constructor function practical code on vs studio. Here we are creating multible objects with sing constructor function stoured in different variable value.
// 10)41:50 adding new name to the object method.
// 11)43:55 objects create method.
// 12)52:50 method in objects Method means create a function inside object and assign to key.
// 13)57:00 difference between outside function and object function .
// 14)58:20 for in
// 15)01:03:10 for print keys from object
// create empty object //ading properties to the object (note if object exist we can able to add properties )
let movies= {
}
// console.log(typeof(movies))
//assign values to the object
movies.ntr="rrr";
// movies.hero.telugu="ntr"; -- for this method we can cannot able to set the properties
movies.hero="ntr";
// console.log(movies)
//how we can access the element values from the object
// method-1
var a= movies['ntr']
// console.log(a)
// method-2
var b =movies.hero
// console.log(b)
//modify the object
movies.hero="vijay devara konda"
// console.log(movies.hero)
//adding new propery to a object
movies["industry"]="telugu";
movies.cinema="telugu hit"
// console.log(movies);
//method 2 new Object constructor method.
let murali= new Object()
murali.village="pathagunta";
// murali["brother"]="lokesh";
// console.log(murali)
// methos-3 new object constructor function method (this method is used for same property name structure we use different type of values)
// here we follow two steps 1)function create and function call method
// method-3 create function or function definition
function user(name,place,pin) {
this.name=name;
this.place=place;
this.pin=pin;
let a=20;
let b=50;
}
// function call
let user1=new user("jegini","pathagunt","517569")
// console.log(user1)
//update the values and add the values to the constructor function method
let user2 =new user("xyz","abc","4356788")
user2.phonenum="988988887838";
user2["type"]="object"
// console.log(user2)
// method-4 Object.create method code not practice.
//methods in objects
function mass(name,place) {
this.name=name;
this.place=place;
this.login=function(){
console.log("hello" + this.name+ "welcome to the" + this.place)
}
}
let mass1=new mass("lokesh","pathaguta")
console.log(mass1)
console.log(mass1.login())
var checking={
place:"pathagunt",
pin:"517569"
}
Thanks
16:30 with and without string quotes note point
Unbelievable ,
Fantastic explanation
I ever seen in TH-cam like your explaining way....
Thank you
3) object.create method 43:00
2)52:00 methods 52:00
Thanks
Note:-in every programming language value assign ,value update or modify,value delete based on logic this is common pattern
1)00:00 intro about objects.
2) 04:00 ways to create objects. 5ways.
3)04:30 object literal. To create object
4)12:00 how to access object values. Two ways are present. (If i want a sixth name how can I get if we take example if we created multible object like json from that we want sixth object name what we can do if we take array by using index value we can access any value by using index position.
5)16:40 note point for access property value we want to give quotes for name.
6)18:50 how to add or modify elements to a object.
7)26:20 new object method create and update values.
8)30:50 new operator with constructor function.
9)37:20 new operator with constructor function practical code on vs studio. Here we are creating multible objects with sing constructor function stoured in different variable value.
10)41:50 adding new name to the object method.
11)43:55 objects create method.
12)52:50 method in objects Method means create a function inside object and assign to key.
13)57:00 difference between outside function and object function .
14)58:20 for in
15)01:03:10 for print keys from object
Good job
note point 0:30 object always show data like collection format east trick curly bracess collection
Thank you
26:40 using new key word object constructor method
Thanks
Ur explanation super Thanks you very much
Its my pleasure
Thank you స్వాతి
Welcome
44:30 create object method
Thank you
Nice Explanation... keep maing videos...
Thank you
At 33:39 object nee access chesukunetappudu user1['key'] ani ivvali kada akkada user1[key] icchina avutunda
User[key ] ante key Ane variable lo unna value teskuntundi for ex let key= "age" then user[key]= user["age"] or user.age
07:37 create a object in vs studio
👍
03:47 way to create object
👍
Nice Explanation Madam
Thank you
21:00 before update and after updating
Thank you so much
30:30 constructor method
👍
18:30 access the element means "Read" in CRUD operation right ?
Yes,right
56:30 note point
Can you please try to put all in one comment,Will pin all your conments
05:14 difference between object and array
👍
super explanation medam
Thank you
10:50 how to access properties from object
👍
1:02:12 for in loop loo user1["key"] enduku use cheyaledhu ?
It is coming from variable so quotes include cheyakudadhu,quotes iste adi fixed string value
Mam again ,Can you please explain about object.create()
Thanks mam
Welcome
supper prediction bahi...
Thanks
10:12 in objects order is not same it show in alphabetical ordered
👍
Hi andi, pls post video on Classes.Thank you
Hi I will upload in this week
baa prathi copmments ki answer icche madam akkada chudaledhu 👌👌
Thank you
19:00 how to add property name and values to a empty object
Thanks
18:44 how to add new property to object
👍
Mam can you please explain about using new operator with constructor function
Watch video from 18:36 ,already explained
Angular test cases kuda videos cheyandi
Not now
Hi , This is Sandhya, very impressed with your detailed and in-depth explanation. Please make more videos on JavaScript concepts. Thank you😇
Hi thank you,sure I will make
hi, can you please explain the object creation. i got error after give values to user3. Thank you!!
What is the error
Please explain all the patterns in python if possible madam.
Numbers,star patterns?
Hloo Madam, JavaScript tho paatuga parallel ga angular kuda nerchukovacha madam. Ledha oka Dani taruvata okati nerchukovala. Please answer this question madam.
Thank you!
Yes javascript tarvatha angular nerchukondi
@@csworldtelugu meru upload cheysina angular videos lo meru type script use cheysara.
a small suggestion sister meeru same edhey vedios english loo kaani chesivunttey mee channel vereey level looo undhunuu sister
any way nice concepts explanation keep going like this
Thanks for the feedback,In future I will start in english definitely
Comma( ,)operator is used for seperate elements
Yes
Akka question ki ela code rayalo explain chey pls
You have an array of numbers in js .how would you use the array methods to find the sum of all even numbers in the array
this is the question
Pls reply my question
Take one global variable sum =0,You have to iterate each element of array check if element %2 ==0 then add that element to existing sum like
sum= sum+ele
@@silpasilpa2119
var arr =[1,2,3,4,5,6,7,8,9,10]
var sum =0;
arr.forEach(ele=>
{
if(ele%2==0){
sum=sum+ele
}
})
console.log(sum)
What is defference between objects and arrays?
Check this video
th-cam.com/video/4IGfh9xklcc/w-d-xo.html
👍🏻
Anni topics cover chesi
React js cheyandi mam
React will start after angular
@@csworldtelugu ok mam, Thank you so much
Is keys shouldn't be written in quotes for strings?In last video u gave double quotes for string keys but here u didnt give?
No issue for single words if quotes or included or not
objects...four types...annam ,pappu,avakaya,gadda perugu....so nice....nu keka cute
Thanks 😀
Rey evarraa nuvvu intha talented ga unnav
Hi Please explain Prime number 1 to 100
Ok
Object.keys or object.values ichinapudu output loo keys Array loo enduku store avutunayi ? I mean output object enduku radhu because manam Object ani keyword use cheystunam kadha mari Array enduku vastundi ?
Object.keys will just create a new array with keys as each element
super bhai...
Thanks
Constructer function call lo vunna values anni constructer function lo ki velthayi kadha medam name assigned to value" abc" enka this Ane keyword endhuku medam
this use chestene aa object ki bind avautayi
@@csworldtelugu okay medam 👍
Some douts in js
Sum of even numbers?
Simply it acts like dictionary in python
Yes
What is keys... today interview questions
In array we can access elements/values by using indexes,the same way we can access objects values using its keys
@@csworldtelugu lists lo kuda use chestaamu kada
array send chyali ankunte ela chyali ,mam
Same way
Kani meru chepindhi values update chaleyadaniki
?
javascript PDF form lo available lo vunda madam
Yes please join channel membership
@@csworldtelugu after joining you share PDF is it correct
@@sravaninaidu9471 I will add you to drive link there I uploaded what ever documents I have
javascript PDF form lo available vunda mam
Yes
@@csworldtelugu if I need how to get
Join channel membership
madam javascript total pdf pettagalara
I have not written notes ,I will write in future
Akka mi tho okasari contact avali
DM to csworldtelugu on Instagram
Madam meeku cheppdam vacha objects lo object.create method lo asalu em chepparu first lo explanation ichindi okari program lo rasindi okati
Don't watch if you feel wrong
Objects vedio chustu w3schools website lo matter chudu ,at that time you can understand easily
Watch her tutorials she provides best content for us. Don't make bad comment dude
Enti madam ki vacha ani aduguthunnava asalu ninnu evadu chudamannadu chusthe chudu lekapothe ledhu madam mathram super ga cheputhadhi a learned a lot from this Channels plz respect our mam ❤
Ledhu correct ga ney mimo. Platform lo nerchukunna pudi kuda elaney chepparu