I'd like if possible parse an angularJS model. Thats means, for each properties check one by one (in a loop) if the value of this property make an action if not make a different action.
I can do this in C# but don't know if possible in this language.
var customer = {
FirstName: "",
LastName: "MyLastName",
Email: "",
};
Thanks,