ecma262
ecma262 copied to clipboard
Language for empty strings is inconsistent
Description:
Some sections use the text "empty String", while others use *""*. We should pick one pattern and standardize on it.
$ grep -oi 'empty string\|[*]""[*]' spec.html | sort | uniq -c
50 *""*
105 empty String
Related: https://github.com/tc39/ecma262/issues/2169
Also related: #2236