How is variable declaration different b/w Swift and Objective-C?
We no longer need to declare variable type. Variables are declared by simple assignment. This is called implicit declaration.
What is the syntax “sugar” for declaring Arrays?
[Int], short for Array<int></int>
What is a computed property?
A computed property is a function declared as a property.