Hallo
Ein
include
oderimport
innerhalb von JavaScripten gibt es m.W. aber nicht.
In JavaScript schon, bloß noch nicht im Browser. ;-)
Bis…
// localFile.js
var something = {
someProperty : 'hello world',
someMethod : function ( ) {
return this.someProperty;
}
};
export { something };
und
import { something } from 'localFile';
…funktioniert, wird es wohl noch etwas dauern.
Gruß,
Orlok