• 2022-06-06
    下面代码的运行结果是( )。var str= "hello world" ;var str1=str.toUpperCase();var str2=str.toLowerCase() ;alert (str1) ;alert (str2) ;
    A: "HELLO WORLD","HELLO WORLD"
    B: "HELLO WORLD","hello world"
    C: "hello worl","HELLO WORLD"
    D: "hello world","hello world"