How to find elements with different values in two different arrays?
First array
[Object { id_request="009", comment_bapak="First Comment"},
Object { id_request="010", comment_bapak="Second Comment"},
Object { id_request="012", comment_bapak=null}
]
Second array
[Object { id_request="009", comment_bapak="First Comment"},
Object { id_request="010", comment_bapak="Second Comment"},
Object { id_request="012", comment_bapak="New comment here ..... "}
]
I am warning the element and its meaning. Example id_request"003"New comment here .....
source
share