Nothing here yet.
Oct 27, 2022 · 6 min read · I used to tutor adult learners and noticed that most of them avoided using Google Classroom because they found it too confusing. I wanted students to be able to see the information they want at-a-glance and with little hassle —so I decided to create...
Join discussion
Jul 30, 2022 · 2 min read · In case you're interested in a little bit of back-history, there's always the (old) news related to the npm left pad incident. Warning: you can spent quite a while browsing tweets, reddit posts and posts about the subject. Well, thankfully we now can...
Join discussion
Jul 9, 2022 · 7 min read · replace replace() is super versatile. It takes two parameters: the pattern you're looking for and the replacement for it. It'll then return a new string with the changes in place. The pattern can be expressed as a string or as a regular expression. T...
Join discussion
Jun 29, 2022 · 3 min read · match match() returns the result, in Array form, of matching a string against the regular expression you pass as a parameter. If you pass a string or number, it'll be converted into a regular expression under the hood, with new RegExp(). Ideally you...
Join discussion