Skip to content

Instantly share code, notes, and snippets.

@NoBey
NoBey / loadScript.js
Last active November 30, 2023 10:11
loadScript
const loadScript = (src, async = true, type = "text/javascript") => {
return new Promise((resolve, reject) => {
try {
const tag = document.createElement("script");
const container = document.head || document.body;
tag.type = type;
tag.async = async;
tag.src = src;