0

I am exploring to use class in javascript. I have below snippet but am not able to find the reason behind why the class is not accessible from window object.

function abc(){}
class abcd{}
alert(window.abc);
alert(window.abcd);
alert(abcd);

I read many article for class and how it's different from function. I found that its just syntactical sugar and special function. But nowhere mentioned why is it not available on the window? and Where can I find a defined class?

Devang
  • 454
  • 1
  • 8
  • 18
kongaraju
  • 9,344
  • 11
  • 55
  • 78

0 Answers0