Skip to content

Latest commit

 

History

History
40 lines (27 loc) · 1.17 KB

03.md

File metadata and controls

40 lines (27 loc) · 1.17 KB

📌 03

Something I was thinking other day is about the true concept of humility. For me, one of its aspects is related to the idea of no matter how you are a senior/ninja/master putYorJobPositionHere, there is always space for you learn new stuff with people.

:octocat: JS

const is amazing! I can avoid something change my dear variables! BAAAAAAM! const does no grant immutability.

const myName = "Zell";
myName = "Triceratops";
// ERROR
const egg = { name: "Humpty Dumpty" };
egg.isBroken = false;

console.log(egg);
// {
//   name: "Humpty Dumpty",
//   isBroken: false
// }

Reference

🔗 Links

💀 Currently


🏠 back home