We have to maintain data in computer memory. The goal is make them efficient for the computers to process. what data structure can best capture the dynamic flow of my information?
- Doğum günü
-
Mayıs 9
- Mesleğiniz
- Web/Mobil Developer
Adaletin bittiği yerde siber başlar.
const name = "HardyFreeman"
const [skills, setSkills] = useState([
"NodeJS", "ReactJS/ReactNative", "Python", "C"
])
if(needToLearnNewSkill && auth.currentUser.userLevel == "customer"){
const newSkill = userInput.value
setSkills([...skills, newSkill])
}