I'm currently using Angular and the project that I'm working on has set coding standards. I'm confused with a few things:
What is the difference between using '===' and '=='?
What're the benefits of using 'returnaspromise' rather than an observable?
What are all of the elements needed to create a full class? (i.e. class, constructor, and code that goes along with it?)
There's a lot that I'm confused with and hope that someone can help! Thank you!
== checks for values while comparing whereas === checks for value and type as well.