files/en-us/web/api/trustedscripturl/index.md
{{APIRef("Trusted Types API")}}{{AvailableInWorkers}}
The TrustedScriptURL interface of the {{domxref("Trusted Types API", "", "", "nocode")}} represents a string that a developer can insert into an injection sink that will parse it as a URL of an external script. These objects are created via {{domxref("TrustedTypePolicy.createScriptURL","TrustedTypePolicy.createScriptURL()")}} and therefore have no constructor.
The value of a TrustedScriptURL object is set when the object is created and cannot be changed by JavaScript as there is no setter exposed.
The constant sanitized is an object created via a Trusted Types policy.
const sanitized = scriptPolicy.createScriptURL(
"https://example.com/my-script.js",
);
console.log(sanitized); /* a TrustedScriptURL object */
{{Specifications}}
{{Compat}}