Adarsh yadavforAdarsh yadav's blogyadav007.hashnode.netยทApr 8, 2023Creating array in JavaScriptlet a = [1, 2, 3, 4, 5, 6, "Aditya"]; console.log(a); let b = new Array(); console.log(b); let c = new Array(5); console.log(c); let d = new Array['abc']; console.log(d);JavaScriptAdd a thoughtful commentNo comments yetBe the first to start the conversation.