DEV Community

Discussion on: Var, let and const- what's the difference?

Collapse
 
abhijeetckar92 profile image
abhijeetckar92 • Edited

this is a good article..however you should update your last example
const flow = {
message : "say Hi",
times : 4
}

to

const greeting = {
message : "say Hi",
times : 4
}

don't know how anybody who's reading this article missed that!

Collapse
 
ramachowdary profile image
rama-chowdary

Yeah

Collapse
 
abdushaker profile image
Abdu Shaker

I noticed something did not add up but I didn't pay attention to the details since I got what I was looking for. Good catch, tho.

Collapse
 
curiousconfuseddev profile image
Ansh

It's updated now. Thanks for notifying

Collapse
 
bkmillanzi profile image
Bkmillanzi

left me in blanks... I am glad you had pointed it out! Thanks'
and btw, the article is indeed one of the best!

Collapse
 
sarah_chima profile image
Sarah Chima

thank you