Skip to content

AngularJS best practices

m-kostira edited this page Feb 6, 2019 · 1 revision

Use components with isolate scope

  • avoids spaghetti code where you pass around data using scope (aka scope soup)

Use services to pass data around

  • avoids spaghetti code where you pass around data using scope (aka scope soup)
Clone this wiki locally