• + 1 comment

    The task says:

    The variables i d and s are already declared and initialized for you.

    But this is not true, You'll need to create and initalise them yourself to pass.

    Eg:

    const i: number = 4;
    const d: number = 4.0;
    const s: string = "HackerRank"
    

    `