Tagged Questions
-2
votes
2answers
166 views
Is it reasonable to use Javascript MVC Frameworks for closed source paid web applications?
I am wondering if it is reasonable to write closed source, paid web apps in Javascript (JS MVC Frameworks like AngularJS, Backbone, Knockout, ...)? I'm concerned because in this type of frameworks you ...
-1
votes
4answers
701 views
How to improve my loop logic in programming?
I know how to do simple loops but I don't know what's going on when many loops are working together.
For example:
for (i=0; i <= 9; i++){
document.write(linebreak);
for (m=0; m <= 9; ...