摘要:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <script> // 当条件、真语句、假语句都是一条语句的时候,我们可以使用三目来改写if // if (4<5){ // alert(1) // } // else{ // alert(2) // 阅读全文
2019年9月7日
摘要:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <script> // 哪些数据是假 // 0 undefined null "" NaN false // if ( [] ){ // alert('真,执行'); // } // if ( 2<6 阅读全文
摘要:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <script> // 当真语句只有一条代码的时候(但是不推荐) // if (4<5){ // alert(1) // }; // if(4<5)alert(1); // if(4<5) // ale 阅读全文
摘要:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <script> let a = 10; let b = 8; let c = a&b; //00000000 00000000 00000000 00001010; //00000000 000000 阅读全文
摘要:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <script> // . [] () // ++ -- ! typeof // * / % // + - // > < >= <= // && // || // 三目 // = // , // let 阅读全文
摘要:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <script> // . [] () // ++ -- ! typeof // * / % // + - // > < >= <= // && // || // 三目 // = // , // let 阅读全文
摘要:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <script> // > < >= <= // let a = 10-vue-router; // let b = 20; // let a = '10-vue-router'; // let b = 阅读全文
摘要:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <script> // && 与 只考虑布尔值,真真为真,其他都假 // 真正的应用:遇到假就停然后取这个假值,否则取最后边的值不管真假 // || 或 只考虑布尔值,假假为假,其他都真 // 真正的应 阅读全文
摘要:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <script> let a = (4,5,6); //>>a=6 // 这个操作比较骚,以后用 console.log(a); </script> </body> </html> 阅读全文