I have just started learning Scala and I came across two syntax to initialize an empty ArrayBuffer which are :
ArrayBuffer.empty[A]ArrayBuffer\[A]()
Is there any difference or preference in terms of usage of them as both are producing the same result when elements are added and played around with?