Oluwafemi Onadokunforcodemaster17.hashnode.netยทJan 1, 2023Let, Var and Const KeywordsVariables are containers for storing data. There are three main ways of declaring javascript variables Var keyword Let keyword const keyword var x = 10; let y = 11; const z = 15; The let and const keywords are new ways of declaring javascript v...let and constAdd a thoughtful commentNo comments yetBe the first to start the conversation.