{
    "path": "/home/krm/dev/mimer-academia/programing/js/datatypes/Questions/string.sv.json",
    "s": "Ignor",
    "invert": true,
    "level": 1,
    "title": [
        "String"
    ],
    "author": [
        "krm"
    ],
    "created": {
        "year": 2023,
        "month": 9,
        "day": 26
    },
    "status": "alpha",
    "description": [
        "Ange värdet på utrycket nedan. Observeraq att många av dessa kan tolkaren representera på inkosekvensa sätt, så det kan vara bra för dig \nsjälv att kommentera vad som händer. OBS! Visa av svaren kan vara svåra \natt se."
    ],
    "statments": [],
    "comment": [],
    "cards": [
        {
            "level": 1,
            "index": 1,
            "exactly": true,
            "title": [
                "\"hej\""
            ],
            "description": [],
            "statments": [
                {
                    "description": [
                        "hej"
                    ]
                }
            ],
            "comment": [],
            "kind": "question"
        },
        {
            "level": 1,
            "index": 2,
            "exactly": true,
            "title": [
                "\"'hej'\""
            ],
            "description": [],
            "statments": [
                {
                    "description": [
                        "'hej'"
                    ]
                }
            ],
            "comment": [],
            "kind": "question"
        },
        {
            "level": 1,
            "index": 3,
            "exactly": true,
            "title": [
                "'\"hej\"'"
            ],
            "description": [],
            "statments": [
                {
                    "description": [
                        "\"hej\""
                    ]
                }
            ],
            "comment": [],
            "kind": "question"
        },
        {
            "level": 1,
            "index": 4,
            "exactly": true,
            "title": [
                "\"\\\"hej\\\"\""
            ],
            "description": [],
            "statments": [
                {
                    "description": [
                        "\"hej\""
                    ]
                }
            ],
            "comment": [],
            "kind": "question"
        },
        {
            "level": 1,
            "index": 5,
            "exactly": true,
            "title": [
                "'\\'hej\\''"
            ],
            "description": [],
            "statments": [
                {
                    "description": [
                        "'hej'"
                    ]
                }
            ],
            "comment": [],
            "kind": "question"
        },
        {
            "level": 1,
            "index": 6,
            "exactly": true,
            "title": [
                "\"Hello!\\nbye!\""
            ],
            "description": [],
            "statments": [
                {
                    "description": [
                        "Hello!\\nbye!"
                    ]
                }
            ],
            "comment": [],
            "kind": "question"
        },
        {
            "level": 1,
            "index": 7,
            "exactly": true,
            "title": [
                "\"\\tHello!\""
            ],
            "description": [],
            "statments": [
                {
                    "description": [
                        "Hello!"
                    ]
                }
            ],
            "comment": [],
            "kind": "question"
        },
        {
            "level": 1,
            "index": 8,
            "exactly": true,
            "title": [
                "\"Hello!\"[1]"
            ],
            "description": [],
            "statments": [
                {
                    "description": [
                        "e"
                    ]
                }
            ],
            "comment": [],
            "kind": "question"
        },
        {
            "level": 1,
            "index": 9,
            "exactly": true,
            "title": [
                "`Hello!`"
            ],
            "description": [],
            "statments": [
                {
                    "description": [
                        "Hello!"
                    ]
                }
            ],
            "comment": [],
            "kind": "question"
        },
        {
            "level": 1,
            "index": 10,
            "exactly": true,
            "title": [
                "\"A good student\".split(\" \")"
            ],
            "description": [],
            "statments": [
                {
                    "description": [
                        [
                            "\"A\", \"good\", \"student\""
                        ]
                    ]
                }
            ],
            "comment": [],
            "kind": "question"
        },
        {
            "level": 1,
            "index": 11,
            "exactly": true,
            "title": [
                "\"A good student\".split()"
            ],
            "description": [],
            "statments": [
                {
                    "description": [
                        "A good student"
                    ]
                }
            ],
            "comment": [],
            "kind": "question"
        },
        {
            "level": 1,
            "index": 12,
            "exactly": true,
            "title": [
                "\"Aoo;Boo;Coo\".split(\";\")"
            ],
            "description": [],
            "statments": [
                {
                    "description": [
                        [
                            " \"Aoo\", \"Boo\", \"Coo\""
                        ]
                    ]
                }
            ],
            "comment": [],
            "kind": "question"
        },
        {
            "level": 1,
            "index": 13,
            "exactly": true,
            "title": [
                "\" Test \".trim()"
            ],
            "description": [],
            "statments": [
                {
                    "description": [
                        "Test"
                    ]
                }
            ],
            "comment": [],
            "kind": "question"
        },
        {
            "level": 1,
            "index": 14,
            "exactly": true,
            "title": [
                "\"Lorem ipsum dolor sit amet\".indexOf(\"i\")"
            ],
            "description": [],
            "statments": [
                {
                    "description": [
                        "6"
                    ]
                }
            ],
            "comment": [],
            "kind": "question"
        },
        {
            "level": 1,
            "index": 15,
            "exactly": true,
            "title": [
                "\"Lorem ipsum\".toUpperCase()"
            ],
            "description": [],
            "statments": [
                {
                    "description": [
                        "LOREM IPSUM"
                    ]
                }
            ],
            "comment": [],
            "kind": "question"
        },
        {
            "level": 1,
            "index": 16,
            "exactly": true,
            "title": [
                "\"Lorem \".concat(\"ipsum\")"
            ],
            "description": [],
            "statments": [
                {
                    "description": [
                        "LOREM IPSUM"
                    ]
                }
            ],
            "comment": [],
            "kind": "question"
        },
        {
            "level": 1,
            "index": 17,
            "exactly": true,
            "title": [
                "typeof \"Hello\""
            ],
            "description": [],
            "statments": [
                {
                    "description": [
                        "string"
                    ]
                }
            ],
            "comment": [],
            "kind": "question"
        }
    ],
    "kind": "questions"
}