How to impliment a concept of arrayList and Model class in javascript -
how impliment concept of arraylist , model class in javascript in java create model class , storing model class objects in arraylist after getting value suppose getting values xml , values storing in model class , model class objects storing arraylist object want know how thing in javascript thank in advance
arraylist: suppose in javascript you'd use array.
model class: if properties/getters/setters in java, can use simple objects in javascript. every property becomes field. no need declare class upfront. if model class includes interesting methods, make common prototype these objects , put methods there.
Comments
Post a Comment