Feb16
Angular2 ngFor skip first index
Simply use angular2 pipe slice by appending at the end of array. <li *ngFor=”#user of users | slice:1″> {{ user.name }} is {{ user.age }} years old. </li>
Feb16
Simply use angular2 pipe slice by appending at the end of array. <li *ngFor=”#user of users | slice:1″> {{ user.name }} is {{ user.age }} years old. </li>
Feb02
Everyone is excited about Symfony 3, including myself 🙂 Symfony 3 or Symfony 2? Symfony 2.8 is exactly same as Symfony 3. But wait, then what’s the difference? Symfony 3 mostly have new directory structure for logs, cache and console. Also all the previous deprecated functions are removed. Should I upgrade then, if its same? […]