79505895

Date: 2025-03-13 09:06:41
Score: 0.5
Natty:
Report link
type Foo = {
    yes: boolean
    no: string
}

    const files = new Map<string, Foo>()
    
    files.set("test", {yes: true, no: "false"})
    
    files.forEach((value: Foo, key: string) => {
        console.log(value.no);
    });
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Martin Wangen-Eriksen