Developer Console

We have two choices to put the JavaScript in the code. One is in the <head> segment and the other is after the <body> tag. Yet, on the off chance that we see other expert sites, they place their JavaScript toward the finish of the <body> tag so the DOM doesn't get influenced.
<script>
console.log('Hello world');
</script>
On the off chance that we open the console segment of the program, we can see the yield of the above code.
The console is the main spot, where you will track down every one of the mistakes made in the code. On the off chance that you have locked any ask for or have applied AJAX in the code, the mistakes concerning this load of things will be displayed in the control center tab itself. Likewise, we can see the upsides of various factors whenever written in the code. Even though there might be a possibility that in case you are utilizing some other program separated from Chrome like Firefox or Safari, you might track down an alternate control center tab, the significant level thoughts of the number of programs will be something very similar.
0 Comments