js not instanceof

Solutions on MaxInterview for js not instanceof by the best coders in the world

showing results for - "js not instanceof"
Gabriele
02 Feb 2019
1if ( !(obj instanceof Array) ) {
2  console.log('obj is not an Array')
3}