javascript Javascript的基础知识

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript Javascript的基础知识相关的知识,希望对你有一定的参考价值。

let name = 'Haris';
let number = 5.5;

console.log(`${name} is ${number} years old!`);

if (true && true) {
  let name = 'Enver';
  
} else if (true || false) {
  if (true  === true) {
    // Execute something
  }else if (true !== false) {
    // Execute something
  }else {
    // Execute something
  }
}else {
  // Execute something
}

以上是关于javascript Javascript的基础知识的主要内容,如果未能解决你的问题,请参考以下文章

javascript里的基础语法数据类型以及类型转换

技术者丨你对JavaScript知多少(第二期)

使用 React 和 TypeScript something 编写干净代码的10个必知模式

使用 React 和 TypeScript something 编写干净代码的10个必知模式

使用 React 和 TypeScript something 编写干净代码的10个必知模式

SPA(单页应用)知多少