Javascript Promise
A Promise is a guaranteed placeholder value for what a function or series of functions will return. It’s a promise to return a value eventually. The function swears this time is different. You can trust it. It …
Tag
A focused thread through the archive.
A Promise is a guaranteed placeholder value for what a function or series of functions will return. It’s a promise to return a value eventually. The function swears this time is different. You can trust it. It …
TypesScript interface names should start with “I” because while a type is real, an interface is purely “I"maginary.
tl;dr Add a netlify.toml file to the root of your project if one doesn’t exist. Add the following setting to redirect all routes to your single-page-application. [[redirects]] from = "/*" to = …
Brief History of Callbacks It all starts with the callback function. A callback function is just a plain JavaScript function that is passed into another function as an argument. That’s it. Nothing special. This …
Event Handling in jQuery My newest course, “Event Handling in jQuery” went live at Pluralsight! View My Course - Event Handling in jQuery GitHub Files - Event Handling in jQuery Course Description Open your …
JavaScript Function Signatures Alright, you’ve probably seen functions before. Something like this maybe? function doSomething(name, desc, task) { // did something } This function, named doSomething, takes three …