#react-native
Read more stories on Hashnode
Articles with this tag
What's the output ? function sayHi() { console.log(name); console.log(age); var name = 'Lydia'; let age = 21; } sayHi(); A: Lydia and...