Ext.create will instantiate the class just like the new keyword will except it checks to see if the class has already been loaded. If not then it will load the file. Once it has made sure the class definition exists then it will create the instance.
If you know the class is going to be loaded, using the new keyword is fine, I do it about 99% myself.