I'm adding some js script like this:
const script = document.createElement('script');
script.src = 'https://cdn.some/file.js';
script.async = true;
script.setAttribute('type', 'text/javascript');
document.body.appendChild(script);
What is the use of .async = true;
?