JavaScript is heavily used in almost all modern web applications. Knowing how to format a .js file, set breakpoints, and alter a script’s logic on the fly can be very helpful when working with web applications. To start, let’s navigate to a website and view the application’s resources. For our example, we are using the angular.io website. To do this, we can navigate to the site’s homepage and press F12, or right-click on the homepage and choose the inspect option. Figure 1 – Inspect Page This opens the developer tools, and from there, we can select the Sources tab if we are in a Chromium-based browser such as Google Chrome or Brave. In Firefox, we can use the Debugger tab. Figure 2 – Developer Tools View Lists the resources by domain. Shows the HTML of the current page, including scripts. In this case, we are on the homepage of the application, which is called ‘index’. This would show the contents of the selected JavaScript file. In this case, the file is named main.34