Thursday, 14 March, 2019 UTC


Summary

[Logpoints](https://developers.google.com/web/updates/2019/01/devtools) are one of the features recently released in Chrome 73. They allow you to easily log and debug your code (both on local environment and on production) without cluttering your code with `console.log()` statements everywhere and without using a debugger which might be an overkill when you simply want to log something. In this lesson we are going to learn how to create Logpoints in Chrome DevTools to catch a bug in a JavaScript function.