Which is the best way to debug JS on a web page .php (after the PHP is executed on the server) with Visual Studio Code? I found some solutions like Debugger for Chrome Extension but they work only with .html file.
Sample of test.php:
<html>
<head>
    <title>Sample</title>
    <script>
        alert("test");
    </script>
</head>
<body>
    <?php
        echo "abc";
    ?>
</body>
</html>
I'm using XAMPP.
I already know the difference beetween client and server side programming.
 
    