Logical Operators in HindiLogical Operators तीन प्रकार के होते है |OperatorsDescription&&(and)AND||(or)OR!NOTExample for &&(and) Logical Operator&& operator के साथ दिए हुए दोनों conditions अगर true होते है तो ये true return करता है | '&&' operator के बजाय 'and' को भी लिखा जाता है |Source Code :1234567<?php$a = 5;...
Showing posts with label Logical-Operators-Php. Show all posts
Showing posts with label Logical-Operators-Php. Show all posts
05 November, 2018
Logical Operators in Hindi
Programing Coderfunda
November 05, 2018
hindi-php, Logical-Operators-Php, php
No comments
Logical Operators in Hindi
Logical Operators तीन प्रकार के होते है |
OperatorsDescription
&&(and)AND
||(or)OR
!NOT
Example for &&(and) Logical Operator
&& operator के साथ दिए हुए दोनों conditions अगर true होते है तो ये true return करता है | '&&' operator के बजाय 'and' को भी लिखा जाता है |
Source Code :
1234567<?php
$a...