Closed feinstaub closed 6 years ago
Probably a regression due to refactoring:
On http://www.jshero.net/main.html?koan=stringupper this correct solution
var toCase = function(a) { return a.toLowerCase() + '-' + a.toUpperCase(); }
yields a test error:
toCase("Ida") gibt nicht "ida-Ida", sondern "ida-IDA" zurück.
Thanks! Fixed.
Probably a regression due to refactoring:
On http://www.jshero.net/main.html?koan=stringupper this correct solution
var toCase = function(a) { return a.toLowerCase() + '-' + a.toUpperCase(); }
yields a test error: