s1ddiq

11
reputation
3

There's nothing really interesting about me other than I develop the web.

    const s1ddiq = {
        name: "siddiq",
        age: "private",
        hobbies: {
            basketball: "I love doing basketball...",
            web_developing: "my favorite thing to do is develop the web.",
        },

        likes: {
            cars: "especially mclarens",
            food: "mostly dessert such as strawberry cakes etc",
            gaming: "I game whenever I can",
            coding: "code whenever I can"
        }
    }

    const Siddiq = {
        constructor(name, age) {
            this.name = name;
            this.age = age;
        }
    }

    let myself = new Siddiq('Siddiq', 13)