search
HomeWeb Front-endJS TutorialMagic variables in JavaScript that will drive you crazy_javascript tips

There is such a variable tt, which satisfies the following code.
After the code is executed, errCount=0 and the assertion function never alerts information
The code is as follows:

Copy code The code is as follows:
<script> <BR> var tt=/* Please define tt here */; <BR> var errCount=0 //Global variable, used to record the number of assertion declarations in the assert function <BR>/* <BR> Assertion function <BR> If v is false, the function alert("assert error") and accumulates the counter errCount <BR> If v is true, do nothing <BR> */ <BR> function assert(v) { <BR> if (!v) { <BR> alert("assert error"); <BR> errCount; <BR> } <BR> } <br><br> assert((tt || true) == false) <BR> assert((tt || false) == false) <BR> assert((tt && true ) == true) <BR> assert((tt && false) == false) <BR> assert((true || tt) == true) <BR> assert((tt || true) == false) <BR> assert((false || tt ) == false) <BR> assert((tt || false) == false) <BR> assert((true && tt) == false) <BR> assert((tt && true ) == true) <BR> assert((false && tt ) == false) <BR> assert((tt && false ) == false) <br><br> assert((tt ? true : false) == true) <BR> assert((tt == false) == true) <BR> assert((!tt == tt ) == true) <BR> assert((tt '') == "false" ) <BR> assert(tt                                                                                                                                                                                                                      <br><br>Tongfa CSDN: Magic Variables in JavaScript<BR>This question was a question that one of my colleagues asked me to test after get off work. I thought about it for a long time and tried for a long time. <BR>I got the following answer , can meet the requirements of the question. <BR>The answer is as follows: <BR>var tt=new Object(false); <BR>var tt=new Boolean(); <BR>var tt=new Boolean(false); <BR>Through this question, we can feel the flexibility of js and deepen our understanding of js. <BR>I used to often use the following judgments in the code <BR>if (a){ <BR> alert('ok') <BR>} <BR>Now it seems that the logical hidden danger of writing this way is very big. <BR>I will use the wonderful reply of a netizen in csdn to explain the above problem <BR>|| is calculated like this: From the first From the beginning, if a meaningful return is encountered, otherwise the last expression is returned (note that it is not necessarily a Boolean value); <BR>&& is operated like this: starting from the first one, if a meaningless return is encountered, otherwise it is returned The last expression (note the same as above); <BR>! is operated like this: negate the value of the expression (note not the expression). <BR>What is meaningless: the following six: 0,null,undefined,"",false,NaN <BR>Other than these, it is regarded as meaningful. <BR>new Boolean(), new Boolean(false) are the same thing. Since it is an object, it is meaningful, but its value is false, so it can be regarded as "meaningful false". In this way, That can explain all the problems. <BR>new Object(false) is also meaningful, its value is also false, but its type is Object, while new Boolean()'s type is Boolean. <BR>One more reminder: the two operators || and && do not operate on values, that is, regardless of the value of the expression during the operation, they operate on the expression itself; <BR>These two operators How do you evaluate expressions? <BR>Answer: It only matters whether the expression is meaningful, regardless of its value. <BR>For expressions, there are only 6 meaningless ones; please note here: all objects generated by new method are dynamic objects, and dynamic objects are regarded as meaningful <BR>Two more examples: <BR>1. 0||false||new Boolean(false) <BR>The operation is as follows: <BR>First of all: 0 is a constant, which happens to be one of the meaningless ones, so continue; and false is also one of the meaningless ones, so continue; new Boolean(false) is a dynamic object and is meaningful, so the result of the above operation is new Boolean(false) <BR>2. 0||new Boolean(false)||true <BR>What will be the result? Many people will think that the result is true without paying attention, but this is wrong. <BR> Let’s talk about the answer first: the result is the same as above <BR> First of all: 0 is a constant, which happens to be one of the meaningless ones, so continue; new Boolean (false) is a dynamic object, meaningful; a meaningful expression has been found here, So no further calculations are needed. So the result is the same as above. <BR>====== <BR>The same applies to the && operator, so I won’t say more. <BR>Off-topic: <BR> What’s interesting is that after the answer came out, we also used some unconventional means to answer this question (for entertainment only) <br><br><STRONG>var tt=window[" assert"]=new Function(); <BR>This sentence means the following two lines of code <BR>function assert(){} <BR>function tt(){} <BR>javascript allows duplication Define a function, and when executing it, the latter one shall prevail. <BR></script>
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Replace String Characters in JavaScriptReplace String Characters in JavaScriptMar 11, 2025 am 12:07 AM

Detailed explanation of JavaScript string replacement method and FAQ This article will explore two ways to replace string characters in JavaScript: internal JavaScript code and internal HTML for web pages. Replace string inside JavaScript code The most direct way is to use the replace() method: str = str.replace("find","replace"); This method replaces only the first match. To replace all matches, use a regular expression and add the global flag g: str = str.replace(/fi

8 Stunning jQuery Page Layout Plugins8 Stunning jQuery Page Layout PluginsMar 06, 2025 am 12:48 AM

Leverage jQuery for Effortless Web Page Layouts: 8 Essential Plugins jQuery simplifies web page layout significantly. This article highlights eight powerful jQuery plugins that streamline the process, particularly useful for manual website creation

Build Your Own AJAX Web ApplicationsBuild Your Own AJAX Web ApplicationsMar 09, 2025 am 12:11 AM

So here you are, ready to learn all about this thing called AJAX. But, what exactly is it? The term AJAX refers to a loose grouping of technologies that are used to create dynamic, interactive web content. The term AJAX, originally coined by Jesse J

10 jQuery Fun and Games Plugins10 jQuery Fun and Games PluginsMar 08, 2025 am 12:42 AM

10 fun jQuery game plugins to make your website more attractive and enhance user stickiness! While Flash is still the best software for developing casual web games, jQuery can also create surprising effects, and while not comparable to pure action Flash games, in some cases you can also have unexpected fun in your browser. jQuery tic toe game The "Hello world" of game programming now has a jQuery version. Source code jQuery Crazy Word Composition Game This is a fill-in-the-blank game, and it can produce some weird results due to not knowing the context of the word. Source code jQuery mine sweeping game

How do I create and publish my own JavaScript libraries?How do I create and publish my own JavaScript libraries?Mar 18, 2025 pm 03:12 PM

Article discusses creating, publishing, and maintaining JavaScript libraries, focusing on planning, development, testing, documentation, and promotion strategies.

jQuery Parallax Tutorial - Animated Header BackgroundjQuery Parallax Tutorial - Animated Header BackgroundMar 08, 2025 am 12:39 AM

This tutorial demonstrates how to create a captivating parallax background effect using jQuery. We'll build a header banner with layered images that create a stunning visual depth. The updated plugin works with jQuery 1.6.4 and later. Download the

How to Write a Cookie-less Session Library for JavaScriptHow to Write a Cookie-less Session Library for JavaScriptMar 06, 2025 am 01:18 AM

This JavaScript library leverages the window.name property to manage session data without relying on cookies. It offers a robust solution for storing and retrieving session variables across browsers. The library provides three core methods: Session

Load Box Content Dynamically using AJAXLoad Box Content Dynamically using AJAXMar 06, 2025 am 01:07 AM

This tutorial demonstrates creating dynamic page boxes loaded via AJAX, enabling instant refresh without full page reloads. It leverages jQuery and JavaScript. Think of it as a custom Facebook-style content box loader. Key Concepts: AJAX and jQuery

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software