0
votes
3answers
88 views

Javascript Not (a==b) || Not (c==b)

I have been trying to get the following compare operator to work with no luck. The second 'if' always executes the next statement in the code. What I want is to be able to detect when eith entryType ...
-1
votes
4answers
146 views

Java, multiple operators in conditional statement [closed]

I am fairly new to java and i'm trying to write this simple program to calculate the cost of admission for single and multiple employees. this is the error message im getting about the operators in ...
0
votes
3answers
33 views

Amount of logical combinations

My brain seems to be stoped, and I am looking for a help. I have the following variables: $start_t = 1; $start_n = 2; $end_t = 6; $end_n = 5; and I like to check all the logical combinations ...
0
votes
0answers
149 views

Logical Comparison of Vectors in R

First I will post my code then explain it a little bit so everyone knows what is going on. # load library library(VIM) # set directory setwd("U:/Actclosures") # load data data <- ...
0
votes
3answers
1k views

using logical OR operator in a JavaScript case statement

I have two jQuery files- one [newForms_jQuery.js] being called on userNewItemForm and adminNewItemForm, another [editForms_jQuery.js] being called on userEditItemForm and adminEditItemForm. I'd like ...
23
votes
8answers
5k views

Why is there no logical xor in JavaScript?

Why is there no logical xor in JavaScript?
1
vote
2answers
237 views

Logical operators in JavaScript — how do you use them?

I don't understand how &&, ||, and ! work... both with bools and other data types. How do you use them?