From where come that JS files in ?

Quick but not recommended solution – remove wp_head() function from your header.php file. NOT RECOMMENDED, because new plugins may not work once you did this.

The best way is to find that files in you theme code, just perform a search within your theme files for wp_enqueue_script – you have to find the hook where this files are connected and you can remove this files just by removing/commenting the appropriate line of code. This method is better but it is still not a perfect way in case it is not your custom theme.

The best way if you are using not your own custom theme is to disconnect those files with wp_dequeue_script() and wp_deregister_script() function. But you have to read these function docs to learn how to do it.

https://codex.wordpress.org/Function_Reference/wp_dequeue_script
https://codex.wordpress.org/Function_Reference/wp_deregister_script