[Solved] Can i import javascript file?

if i have server.js javascript content:
function test(){
console.log(“external javascript test”);
}

how import server.js to gevelop5 javascript?

Create a new js event. Make that js event create a new DOM script object and make your code there, and append the new dom element to the document.

1 Like

Thanks your help for this Suggest^^