How to use onblur function to check thetext field if it has value and it will return,how to alert user if the text field is nul | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How to use onblur function to check thetext field if it has value and it will return,how to alert user if the text field is nul

Please put the code

16th Sep 2019, 1:49 AM
Kino Ilfi
Kino Ilfi - avatar
1 Answer
0
const object1 = { a: 'somestring', b: 42, c: false }; console.log(Object.keys(object1)); Output will be [a, b, c] const object1 = { a: 'somestring', b: 42, c: false }; console.log(Object.values(object1)); Output will be [somesring, 42, false]
16th Sep 2019, 2:04 AM
Anthony Johnson
Anthony Johnson - avatar