JSFiddle - React, Tailwind, and code Playground

by Julian Garcia Castillo

JavaScript

let selected = [
{id: 1,name: 'pedro', slicing_job_id: false},
{id: 1,name: 'pedro', slicing_job_id: false},

{id: 1,name: 'pedro', slicing_job_id: false},

]

let isOrphanPrintFile = selected.some(f => {
      return !f.slicing_job_id
    })
    
    console.log(isOrphanPrintFile)