Promise {_U: 0, _V: 0, _W: null, _X: null}
_U: 0
_V: 1
_W: false
_X: null
[[Prototype]]: Object
-
- I want to find only Value of "false" Please help me to get it.
Asked
Active
Viewed 57 times
0

f1sh
- 11,489
- 3
- 25
- 51

Prokash Dev
- 37
- 8
-
1The promise has to resolve before you access it values. Either `await` it (in `async` context) or use promise chaining: `myPromise.then(result => { // your code });` – nbokmans Feb 22 '23 at 10:38
-
javascript is not java. – f1sh Feb 22 '23 at 10:38