Tagged Questions
0
votes
5answers
41 views
Variable reassignment in OOP languages
I was playing around with some variables today to get a better feel for them and I came across something that looks peculiar to me. Here's an example in JavaScript
var foo = "Sethen";
var bar = foo;
...
0
votes
2answers
87 views
defining an undefined global variable inside a function
This is messy stuff (not my code but I'm stuck to it). A function depends on a globally defined variable.
function variableIssues(){
alert(someGlobalString); // alerts "foo"
}
Sometimes this ...
2
votes
1answer
61 views
An expression evaluates to TRUE when it couldn't possibly be TRUE, could it?
I have the following check to see if an element should be considered "hovered over" or not.
I'm very confused because I'm seeing elements set to state === 'hover' when they should not be.
The alert ...
-3
votes
4answers
316 views
Can Javascript break mathematical rules? [closed]
I was taught that in maths we evaluate things, with the acronym BODMAS
Brackets, Orders(powers), Division, Multiplication, Addition, Subtraction.
I understand that in Javascript, * and / have equal ...
6
votes
5answers
280 views
Javascript order of evaluation
Came across this JS snippet, and I honestly have NO idea of what order things are being evaluated in...
Any ideas? Parentheses would be helpful...
return point[0] >= -width / 2 - allowance ...