Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
Congrats man!
But since the object will be modified after definition "let children" would be more precise than "const children" ^^ -
Wombat105826y@TylerDDevRant the object stays. There are only changes on properties. So using @const is okay.
-
f0cus106716yπ Thanks a lot for making me jealous /s
(So happy for you even tho I don’t know you)
Related Rants
-
agaripian30Got the best cake for my 30th birthday. Only if my wife understood what language I program with. I still love ...
-
GMR51651My girlfriend knows what a coder needs when itβs their birthday. Lucky to have her. Walked into my room and ...
-
Raich11Today my oldest son is 8 years old and with pizza and cake we discussed how to hack his friends tablet, star W...
!dev
const children = {
length: 1,
data: [{
name: "noah",
gender: "male"}]
};
children.length++;
children.data.push({
name: "mina",
gender: "female"
});
const happy = true;
random
birthday
parenting