What should one take into considerations when deciding using helper or function?
Is it ok to have the attribute (or method) in scope and helper with the same name?
- scope: {
- count: 1
- },
- helpers: {
- count: function(){
- return this.count + 1
- }
- }