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
  • 17
kongaraju
  • 8,934
  • 10
  • 51
  • 77

0 Answers0