“Yield” Keyword in JavaScript

The yield keyword is used to pause and resume a generator function
(function* or legacy
generator function). Read more

Similar

JavaScript Party 115: All the stale things

Divya Sasidharan leads a deep discussion with Jerod Santo, KBall, and Nick Nisi on what’s stagnating in browsers. What has remained the same in browser tech over the last 20 years that remains a pain point in working with browsers? For example - Focus in ... (more…)

Read more »

How to Capitalize Strings in JavaScript

To capitalize a string in Javascript so the first character is in uppercase, we don’t need to add another NPM dependency. We can use plain JavaScript or even CSS if it is solely for presentational purposes. TLDR; const chars = 'hello' chars[0].toUpperCase... (more…)

Read more »