script constructor
const
script({})
The <script> HTML element is used to embed executable code or data; this is typically used to embed or refer to JavaScript code. The <script> element can also be used with other languages, such as WebGL's GLSL shader programming language and JSON.
Implementation
const script({
this.async = false,
this.defer = false,
this.src,
this.content,
this.id,
this.classes,
this.styles,
this.attributes,
this.events,
super.key,
});