my result
how to get
first image is my console log result.
how to get the second image in 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 first index(11) objects is this.users results.
the index(12) objects is this.usersnew results.
my question is how to get the index(12) inside objects continues of index(11) to index(23)
image 1