var stage = new createjs.Stage("demoCanvas");
console.log(stage.constructor.name);//prints a
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js></script>
<script src="https://code.createjs.com/createjs-2015.11.26.min.js"></script>
<canvas id="demoCanvas" width="500" height="300">
alternate content
</canvas>
I'm attempting to display the constructor name in CreateJS, but it's showing a
. Is there a solution to correctly display the constructor name?