Closed dman777 closed 7 years ago
Oh, I just don't write a lot of ES6 code yet (I write a lot of web side code where ES6 is still not everywhere), so I haven't got into the habit of using const
and let
. I think in theory they're nice -- it's reassuring to know I've set a const
to something and can't accidentally change it because i'm a dummy. :)
@notwaldorf Don't you use Babel for the Web Side? If not, why?
@abdulhannanali A lot of the work I do is on small, serverless projects, where I don't have a build step, and adding one would be very annoying. So generally, no.
But Chrome supports most es6 syntax, and that's all that matters right? 😉
Old habits die hard and it's really tuff for me to get used to using
const
andlet
instead ofvar
. If I had it my way, I would could keep usingvar
.I noticed in tiny-care-terminal you used
var
instead. What made you choose to usevar
, just personal preference?