In JavaScript, ______ is a primitive data type that can only have values true or false.
- boolean
- binary
- logical
In JavaScript, the boolean data type is a primitive type that can only have values true or false. It is commonly used for representing logical values in conditional statements and comparisons.
Loading...
Related Quiz
- ______ caching involves storing cache data in the client's browser to reduce server load and increase load speed.
- What is the significance of a returned inner function having access to the outer function's variables even after the outer function has executed?
- How should developers properly handle unhandled promise rejections in Node.js?
- How can you extract route parameters in Express.js from a route URL like "/users/:userId"?
- You are tasked with developing a real-time chat application where low latency and high availability are critical. Which type of database would be the most suitable, and what considerations should you have in mind regarding data consistency and partitioning?