Reputation: 11
Steps for reproducing:
"bla bla bla".split(" ")
Expected: (3) ["bla", "bla", "bla"]
In fact: []
Have anyone ever bumped into this issue?
Upvotes: 1
Views: 52
Reputation: 71
It seems to be a limitation of the iOS Dev Tools on BrowserStack. However, you should be able to get the expected output by executing the command - console.log("bla bla bla".split(" "))
Upvotes: 1