Skip to content
Advertisement

Convert json from file to map not working

i have this code which gives the error “Error: Uncaught (in promise): TypeError: this.weekMap.get is not a function”. Why weekMap is not recognized as a Map object?

JavaScript

The Json file contains:

JavaScript

}

Advertisement

Answer

You are not converting the variable weekMap to a Map object correctly. Try the Object.entries function:

JavaScript
User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement