The keyword await makes JavaScript wait until that promise settles and returns its result. 
I noticed its possible to await a function
var neonlight = await neon();
Is it possible to await a class?
Example
var neonlight = await new Neon(neon_gas);
 
     
    