Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.65K
~329 People Reached
Favorite Forums
Web Development x 1
Favorite Tags
social-media x 1
javascript x 1
1 Posted Topic
Sounds like your getting confused between declaring an object with curly braces and properties e.g. BorrowerViewModel = {ShouldShowMessage: ko.observable(true)} and treating BorrowerViewModel as a function/class with properties e.g. var borrowerViewModel = new BorrowerViewModel() where the properties are the ones declared with the self.? statement eg. self.FirstName. In the latter case …
The End.