Javascript - what is hoisting and why does it matter?
I recently created a post on the differences between var, let and const. One thing that I realised writing that, was that I used the term »
I recently created a post on the differences between var, let and const. One thing that I realised writing that, was that I used the term »
Back in 2016 I made a post on the difference between let and var. However I forgot to include const in this. In this post I »
As a rookie at Alexa I recently got this error. It was obvious what it was saying - it couldn't find the NPM package "ask-sdk-core& »
I recently picked up writing a skill for Alexa. Trying to wrap my head around the terminology I created this post (and some others..) to help »
I just had this issue. All I needed was to run a simple javascript to test something, but it just would not run. In the end »
Here is a small script that I put together in order to create a copy to clipboard button. It works in all modern browsers. I created »
A couple of days ago I had a problem with gridster and resizing when the window size changes. This isn't a fully responsive solution but it »
Simply put, 'use strict' forces you to write more clean code. You might have come across this in javascript 'use strict' or "use strict" »
Running "uglify:applib" (uglify) task [TypeError: Cannot assign to read only property 'warnings' of true] I ran into this error while copying an old »
You might have started to see this keyword "let" from time to time. I stumbled upon this keyword looking through some code on github. »