Here is my outcome: https://i.sstatic.net/s5GGn.png And here is the solution: https://i.sstatic.net/KrkTX.png The first image shows my console log result.
How can I retrieve the second image using the Angular 2 Push Method?
this.limitid = "0";
this.userService.getTestUsers(this.limitid).subscribe(users => this.users = users);
this.limit = "12";
this.userService.getTestUsers(this.limit).subscribe(usersnew => this.usersnew = usersnew);
this.users.push(this.usersnew[0]);
console.log(this.users);
The objects at index(11) are stored in this.users.
The objects at index(12) are stored in this.usersnew.
I am trying to find a way to access the objects from index(12) to index(23) consecutively after index(11).
Image 1