Is javascript appendChild not synchronous

I am deploying the javascript synchronous library in a tag manager using document.write("<script src=....

Are there other methods to add an async to the document (for example:) document.getElementsByTagName("head")[0].appendChild(script)compared to document.write?

+3
source share

All Articles