Raineraineyang.hashnode.dev·Nov 28, 2023Learning Notes: Data is Represented in BinaryThis article is a summary of Chapter 2 of: Yazawa, H. (2015). 程序是怎么跑起来的[How Program Works] (L. Fengjun, Trans.). People's Posts and Telecommunications Press Reason for using Binary in Computers Computers are constructed by integrated circuits (IC). T...Discussshifting operation
Elucian MoiseforProgramming Languagessagecode.hashnode.dev·Nov 2, 2023C# ConditionalsHere is an explanation of logic, boolean values and operators in C#: Logic involves the use of boolean values and operators to represent conditions and make decisions. Boolean values - There are two boolean values in C#: true false Boolean variab...DiscussC# Fundamentalslogic
Yousra Kamalyousraa.hashnode.dev·Oct 5, 2023Understanding Short-Circuiting in JavaScript🔥What is Short-Circuiting? Short-circuiting is a concept related to how JavaScript evaluates logical expressions involving the && (logical AND) and || (logical OR) operators. These operators are used to combine conditions and make decisions based on...Discuss·23 likes·149 readsJavaScript
Clifford Mapesacliffordmapesa.hashnode.dev·Sep 28, 2023Logical Operators in CLogical operators are used to perform logical operations on boolean values. In most cases, we may need our code to perform certain operations when certain conditions are met. This is where logical operators are useful. This is achieved by modifying o...Discuss·1 likeC programminglogical operator
Manik Agnishmanikagnish.hashnode.dev·Sep 18, 2023Demystifying the Nullish Coalescing Operator in JavaScriptNullish Coalescing Operator (??) is a relatively new addition to JavaScript, introduced with ES11. In this blog, we'll explore what it is, why it's useful, and how you can leverage it in your JavaScript projects. Syntax: const defaultAge = age ?? 18;...DiscussJavaScript
ARYAN SHARMAaryansharma.hashnode.dev·Sep 3, 2023Logical operators in JavaScriptHey Amazing people Welcome to another blog in the JavaScript blog course.| In this blog, we aimed to study the Logical Operators of javascript. Logical operators There are four logical operators in JavaScript: || (OR) && (AND) ! (NOT) ?? (Nullish Co...Discuss·3 likeslogical operator
Pranay Goelpranaygoel.hashnode.dev·Aug 14, 2023null >= 0 == true?First of all, before diving into complex relational expressions, it is necessary to understand what null actually is. What is null? null actually means no value. In javascript, typeof null is an object. So we can consider null as a special object whi...Discuss·11 likes·53 readsJavaScript
Haneunhanlee.hashnode.dev·Aug 8, 2023Summary of Operators in PythonTypes of Arithmetic Operators in Python SymbolDescriptionReturn Value +AdditionVaries depending on the data types -SubtractionVaries depending on the data types *MultiplicationVaries depending on the data types /DivisionReturns a floating-p...DiscussProgrammingprogramming
Mayank Bohramayankblogs.hashnode.dev·Aug 7, 2023Java Basic Operators: Mastering Arithmetic, Relational, Bitwise, Logical, and MoreWelcome back, dear readers, to our exciting Java programming series! In our previous articles, we covered topics such as Java Modifier Types and Variable Types. If you missed any of those articles, we highly recommend giving them a read to strengthen...DiscussJava ProgrammingJava
Learn with B 💜techwriterb.hashnode.dev·Jul 30, 2023Understanding De Morgan's Law in JavaScriptIn this reading we will delve into the universe of De Morgan's Law, investigating each premise step by step and presenting practical examples. We'll look at how these principles can improve logical operations in JavaScript. You will be able to do the...Discuss·1 like·36 reads2Articles1Week