2
votes
0answers
69 views

Checklist for coding MVVM web application

We are a small team working on a web application using MVVM design pattern using technologies like .NET, Knockout and HTML. I am trying to come up with a code review checklist for this, so that my ...
1
vote
1answer
127 views

Should I not try to emulate private class data in javascript?

So I have been building this ORM style library for AngularJS (JavaScript) and since I come from a C++/PHP/C# background, I always try to make sure that private things stay private. While this can be ...
-4
votes
1answer
85 views

Check Javascript coding practice and overall performance [closed]

I have a Edit/Details form which has 4 user related fields. On click of Save, I save the edited fields to local storage (if supported) and display the same values in the Details view. Below is the ...
-2
votes
1answer
96 views

Mobile Javascript Coding Standards Cueme browser

Is there a more generic Javascript Standard of Mobile Handheld devices. I could refer to the following links for generic standards. http://javascript.crockford.com/code.html or ...
5
votes
5answers
347 views

Is it considered bad practice to run different JavaScript for IE

Is it considered bad practice (and how bad) to run different JavaScript for IE? Currently im writing some JavaScript and the simplist way to work arround IE quirks seems to be to check for browser ...
10
votes
6answers
793 views

Javascript naming conventions

I am from Java background and am new to JavaScript. I have noticed many JavaScript methods using single character parameter names, such as in the following example. doSomething(a,b,c) I don't like ...