Skip to main content
Code Review

Return to Answer

replaced http://stackoverflow.com/ with https://stackoverflow.com/
Source Link

The best pattern to start "OOP" in JavaScript is the Revealing Pattern:

var revealed = function(){
 var a = [1,2,3];
 var abc = function(){
 return (a[0]*a[1])+a[2];
 }
 return {
 name: 'revealed',
 abcfn: abc
 }
}();

From here here.

Then read this book.

And learn RequireJS, which will increase the modularity of your code and will load your JS files on demand.

I see you are using JS for create HTML elements. To help you with this, take a look at UnderscoreJS templates and Mustache.

The best pattern to start "OOP" in JavaScript is the Revealing Pattern:

var revealed = function(){
 var a = [1,2,3];
 var abc = function(){
 return (a[0]*a[1])+a[2];
 }
 return {
 name: 'revealed',
 abcfn: abc
 }
}();

From here.

Then read this book.

And learn RequireJS, which will increase the modularity of your code and will load your JS files on demand.

I see you are using JS for create HTML elements. To help you with this, take a look at UnderscoreJS templates and Mustache.

The best pattern to start "OOP" in JavaScript is the Revealing Pattern:

var revealed = function(){
 var a = [1,2,3];
 var abc = function(){
 return (a[0]*a[1])+a[2];
 }
 return {
 name: 'revealed',
 abcfn: abc
 }
}();

From here.

Then read this book.

And learn RequireJS, which will increase the modularity of your code and will load your JS files on demand.

I see you are using JS for create HTML elements. To help you with this, take a look at UnderscoreJS templates and Mustache.

added 30 characters in body
Source Link
Jamal
  • 35.2k
  • 13
  • 134
  • 238

The Best Patternbest pattern to start "OOP" in JavascriptJavaScript is the Revealing Pattern:

var revealed = function(){
 var a = [1,2,3];
 var abc = function(){
 return (a[0]*a[1])+a[2];
 }
 return {
 name: 'revealed',
 abcfn: abc
 }
}();

from:From http://stackoverflow.com/questions/5647258/how-to-use-revealing-module-pattern-in-javascripthere .

Then read this book: http://addyosmani.com/resources/essentialjsdesignpatterns/book/this book .

And learn requirejsRequireJS, thatwhich will increase the modularity of your code and will load your jsJS files on demand.

I see you are using jsJS for create htmlHTML elements, to. To help you with this, that take a look on underscorejsat UnderscoreJS templates and mustacheMustache.

The Best Pattern to start "OOP" in Javascript is Revealing Pattern:

var revealed = function(){
 var a = [1,2,3];
 var abc = function(){
 return (a[0]*a[1])+a[2];
 }
 return {
 name: 'revealed',
 abcfn: abc
 }
}();

from: http://stackoverflow.com/questions/5647258/how-to-use-revealing-module-pattern-in-javascript

Then read this book: http://addyosmani.com/resources/essentialjsdesignpatterns/book/

And learn requirejs, that will increase the modularity of your code and will load your js files on demand.

I see you using js for create html elements, to help you with this, that take a look on underscorejs templates and mustache.

The best pattern to start "OOP" in JavaScript is the Revealing Pattern:

var revealed = function(){
 var a = [1,2,3];
 var abc = function(){
 return (a[0]*a[1])+a[2];
 }
 return {
 name: 'revealed',
 abcfn: abc
 }
}();

From here .

Then read this book .

And learn RequireJS, which will increase the modularity of your code and will load your JS files on demand.

I see you are using JS for create HTML elements. To help you with this, take a look at UnderscoreJS templates and Mustache.

added 4 characters in body
Source Link

The Best Pattern to start "OOP" in Javascript is Revealing Pattern:

var revealed = function(){
 var a = [1,2,3];
 functionvar abc = function(){
 return (a[0]*a[1])+a[2];
 }
 return {
 name: 'revealed',
 abcfn: abc
 }
}();

from: http://stackoverflow.com/questions/5647258/how-to-use-revealing-module-pattern-in-javascript

Then read this book: http://addyosmani.com/resources/essentialjsdesignpatterns/book/

And learn requirejs, that will increase the modularity of your code and will load your js files on demand.

I see you using js for create html elements, to help you with this, that take a look on underscorejs templates and mustache.

The Best Pattern to start "OOP" in Javascript is Revealing Pattern:

var revealed = function(){
 var a = [1,2,3];
 function abc(){
 return (a[0]*a[1])+a[2];
 }
 return {
 name: 'revealed',
 abcfn: abc
 }
}();

from: http://stackoverflow.com/questions/5647258/how-to-use-revealing-module-pattern-in-javascript

Then read this book: http://addyosmani.com/resources/essentialjsdesignpatterns/book/

And learn requirejs, that will increase the modularity of your code and will load your js files on demand.

I see you using js for create html elements, to help you with this, that take a look on underscorejs templates and mustache.

The Best Pattern to start "OOP" in Javascript is Revealing Pattern:

var revealed = function(){
 var a = [1,2,3];
 var abc = function(){
 return (a[0]*a[1])+a[2];
 }
 return {
 name: 'revealed',
 abcfn: abc
 }
}();

from: http://stackoverflow.com/questions/5647258/how-to-use-revealing-module-pattern-in-javascript

Then read this book: http://addyosmani.com/resources/essentialjsdesignpatterns/book/

And learn requirejs, that will increase the modularity of your code and will load your js files on demand.

I see you using js for create html elements, to help you with this, that take a look on underscorejs templates and mustache.

Source Link
Loading
default

AltStyle によって変換されたページ (->オリジナル) /