Is it possible to utilize JavaScript global object constructors, such as Array, within the angular 5 view without having to explicitly declare them in the component?
In my particular case, I require access to Array.from() directly within the view.
Currently, I am including 'Array:any' in the fields of my components and setting it up in the constructor like this: 'this.Array = Array'. Is there a more efficient or suggested approach for achieving this?