Parentheses are great. In programming its often used to enclose an argument or parameter within a function or method.
var x = testString("Heres the first string.")
function testString(string) {
return string + " ..and heres an added string.."
}
console.log(x)
Personally, these are the things that I could take for granted. I would say Brackets are often used for arrays, but then after doing a quick search there are curly brackets. I like the descriptions on this website.
Braces, brackets, and parenthesesBraces are great also. Used to encapsulate a piece code. It often starts with a function, followed by the braces, and the code sits between the braces.
Used to create strings. To my suprise, using single quotes versus double quotes is a preference.
Again, similar to above. If I am to use double-quotes or single-quotes I would try to have some consistency about what I am using.