Mastering Scala Basics: Objects & Classes
Just like other programming languages, we use class to create objects that have similar methods and fields. In addition, class in Scala defines a type and the objects created from a class share the same type. class Employee { val name = "John" val id: Int = 10 def details = name + ":" +…