About 15,400,000 results
Open links in new tab
  1. How do you use the ? : (conditional) operator in JavaScript?

    Jun 7, 2011 · 1 The conditional (ternary) operator is the only JavaScript operator that takes three operands. This operator is frequently used as a shortcut for the if statement.

  2. How to use OR condition in a JavaScript IF statement?

    Mar 2, 2010 · How to use OR condition in a JavaScript IF statement? Asked 15 years, 9 months ago Modified 2 years, 10 months ago Viewed 879k times

  3. JavaScript: difference between a statement and an expression?

    Correct me if am wrong, but isn't this considered an "expression statement"? I understand that a statement can also be evaluated to produce a value as you demonstrated above. But a …

  4. javascript - Do we need semicolon at the end? - Stack Overflow

    The concept is known as JavaScript Semicolon Insertion or " Automatic Semicolon Insertion ". This blog post: JavaScript Semicolon Insertion: Everything you need to know (archived from …

  5. if statement - "elseif" syntax in JavaScript - Stack Overflow

    Oct 23, 2010 · In JavaScript's if-then-else there is technically no elseif branch. But it works if you write it this way:

  6. javascript - "Uncaught SyntaxError: Cannot use import statement …

    Oct 3, 2019 · This means that you're using the native source code in an unaltered/unbundled state, leading to the following error: Uncaught SyntaxError: Cannot use import statement …

  7. SyntaxError: Cannot use import statement outside a module

    Oct 14, 2019 · The problem is the developers of Module JavaScript files incorrectly associated Modules with a new ".mjs" (.js) extension, but then assigned it a MIME-type server type of …

  8. JavaScript single line 'if' statement - best syntax, this alternative?

    Jan 14, 2012 · JavaScript single line 'if' statement - best syntax, this alternative? [closed] Asked 13 years, 11 months ago Modified 1 year, 9 months ago Viewed 816k times

  9. Cannot use import statement outside a module - Stack Overflow

    Oct 12, 2019 · Cannot use import statement outside a module Asked 6 years, 2 months ago Modified 1 year, 10 months ago Viewed 133k times

  10. Javascript How to define multiple variables on a single line?

    177 If I want to condense code, what's the proper JavaScript "strict" way to define multiple javascript variables on a single line?