knockoutjs observablearray push by conditions

knockoutjs observablearray push by conditions


// Here observable array contain three objects.
var entries = ko.observableArray([
    { id: '1', name: "Anil", age: '28', type: "A" },
    { id: '2', name: "Kumar", age: '27', type: "B" },
    { id: '3', name: "Singh", age: '29', type: "C" }
]);

var filterdStaus = ko.observable('Kushinagar');

var match = ko.utils.arrayFirst(entries(), function (ech) {
            return filterdStaus === ech.Status;
    });

if (match) {
    entries.push(entry);
}


ANIL SINGH

Anil Singh is an author, tech blogger, and software programmer. Book writing, tech blogging is something do extra and Anil love doing it. For more detail, kindly refer to this link..

My Tech Blog - https://www.code-sample.com/
My Books - Book 1 and Book 2

knockoutjs observablearray push by conditions knockoutjs observablearray push by conditions Reviewed by Anil Singh on 1:08 AM Rating: (5)
www.code-sample.com/. Powered by Blogger.
^