Abhimuralidharan
1 min readDec 11, 2017

--

Its not a computed property. A computed property will execute the entire code block every time it is called. Lazy var will will get executed only once and the initial value will not get changed every time we try to get the value.

--

--