I've tried looking around on here for this, but I'm not quite sure whether I'm phrasing it correctly.
if (a=="something" && a=="Something") {
//some code
}
else {
// some code
}
Can the a variable in this statement equal both "something" and "Something" with the capital S. I've tried just using "something" without the capital, however this doesn't work.