2021年1月4日星期一

How do i convert this value to a string from a boolean

I'm having issues converting this value into a string. it's not displaying properly as a boolean in an and table

      processStudents = (students) => {          return students.map((student, key) => ({              name: `${student.firstName} ${student.lastName}`,              email: student.email,              studentNumber: student.studentNumber,              verified: student.documentsVerified.toString(),              submitted: student.submitted,              key: student._id          }))        }  
https://stackoverflow.com/questions/65572694/how-do-i-convert-this-value-to-a-string-from-a-boolean January 05, 2021 at 11:06AM

没有评论:

发表评论