My latest articles, what's on my mind lately
What makes a senior developer?
Oct 14, 2015 • 4 mins read
Discover essential interview questions to assess the skills and qualities of a senior developer. From evaluating their understanding of good code practices and ability to improve code quality to assessing their familiarity with testing, communication skills, and dedication to continuous learning, these questions will help you identify top-notch candidates.
What's on my playlist - podcasts I listen to
Oct 6, 2015 • 2 mins read
Join me on a journey through my podcast subscriptions, where I share my favorite shows across various subjects. From technical podcasts like JavaScript Jabber and This Developer's Life to board game discussions in The Dice Tower and Shut Up & Sit Down, and even entertainment highlights in The Nerdist and Serial, there's something for everyone in this eclectic mix.
Talking about ES2015: classes
Sep 2, 2015 • 6 mins read
Dive into the world of ES2015 classes and discover how they simplify object-oriented JavaScript. From defining classes and constructors to adding methods, getters/setters, and static methods, this article covers it all. Plus, explore class inheritance and the essential use of the "super" keyword.
Talking about ES2015: strings
Aug 25, 2015 • 3 mins read
Discover the new string features in ES2015 that make your code cleaner and more powerful. Learn about methods like "repeat," "includes," "startsWith," and "endsWith," which provide efficient string manipulation. Plus, explore the flexibility of template literals for multiline strings and expression interpolation.
Talking about ES2015: destructuring
Aug 19, 2015 • 21 mins read
Learn the powerful art of destructuring in ES2015. Discover how to assign values from arrays and objects to variables, swap values effortlessly, set default values, and even initialize function parameters elegantly. Explore the versatility of destructuring in for...of loops for efficient iteration.