I have some code:
console.log("444444: ", profile, JSON.stringify(profile))
when I check the log:
Basically I want to know why I can not see
value: [0]
and i want to pass this profile object to backend and looks like backend is not getting this value field.

Array(1)means it is an array with a length of 1, which is the[0]you see stringified. Make sure you log it immediately before passing it to the next function, and then check how that function accesses the object.JSON.stringify()version is what really gets sent if you json-encode it, so if you're missing something in the backend the issue has nothing to do with howconsole.log()shows things.