M mactron Пользователь Регистрация 16.11.2014 Сообщения 93 Благодарностей 2 Баллы 8 31.07.2015 #1 Hello, How to put two variables in one if with the same rule.. Something like that... '{-Variable.Variable1-} + {-Variable.Variable2-}' != ''
Hello, How to put two variables in one if with the same rule.. Something like that... '{-Variable.Variable1-} + {-Variable.Variable2-}' != ''
Tobbe Client Регистрация 01.08.2013 Сообщения 428 Благодарностей 148 Баллы 43 01.08.2015 #2 Код: {-Variable.Variable1-} == 'value' || '{-Variable.Variable2-}' == 'value' http://www.w3schools.com/js/js_comparisons.asp Реакции: Sonimnx и mactron
Код: {-Variable.Variable1-} == 'value' || '{-Variable.Variable2-}' == 'value' http://www.w3schools.com/js/js_comparisons.asp
M mactron Пользователь Регистрация 16.11.2014 Сообщения 93 Благодарностей 2 Баллы 8 01.08.2015 #3 Thank you Tobbe..
LexxWork Client Регистрация 31.10.2013 Сообщения 1 190 Благодарностей 791 Баллы 113 01.08.2015 #4 becuse a + b should be empty string the right logic operation for var a+b !="" should be a==b && a!="" or a==b && b!="" or a!="" && b!="" or !(a=="" && b=="")
becuse a + b should be empty string the right logic operation for var a+b !="" should be a==b && a!="" or a==b && b!="" or a!="" && b!="" or !(a=="" && b=="")