I created a very simple webpage that just parses some JSON string, but somehow the browser always crashes. I use Chrome 80.0.3987.132. I tested the string with a validator and it assured that it is valid JSON. How can I debug my code to see why it failed? Is there a way to parse the JSON without failing?
Result in Chrome 80.0.3987.132 (on Ubuntu):

<!DOCTYPE html>
<html>
<body>
<h1>Can Chrome parse JSON?</h1>
<script>
var my_json = `{
"base":[
{
"params":{
"list":[
{
"description":"bla",
"max":0.5,
"min":0.0,
"name":"bla",
"stepsize":0.01,
"type":"float",
"unit":"M"
},
{
"description":"bla",
"max":null,
"min":null,
"name":"bla",
"params":[
{
"description":"bla",
"max":15,
"min":5,
"name":"bla",
"stepsize":0.1,
"type":"float",
"unit":null
},
{
"description":"bla",
"max":15,
"min":0.1,
"name":"bla",
"stepsize":0.01,
"type":"float",
"unit":null
}
],
"type":"ARRAY",
"unit":null
}
]
}
}
]
}`
JSON.parse(my_json)
</script>
</body>
</html>