Is there any difference between using '' or "" in JavaScript (example below)?
var sports = ['soccer', 'baseball', 'basketball']
or
var sports = ["soccer", "baseball", "basketball"]
This array is a super simple example, but would there any difference or cases in more advanced JavaScript where '' would make more sense than "" or vice-versa? Learning through Codecademy and they've used both interchangeably without any explanation.