📜  javascript if 一行 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:04:12.043000             🧑  作者: Mango

代码示例6
/* When width is <= 600 breakpoint is 1, when width is between 600 and 1000 breakpoint is 2, else is 4 */
let breakpoint = width <= 600 ? 1 : width <= 1000 && width > 600 ? 2 : 4; // Breakpoint observer code