I was studying up on some web sites and came across an interesting snippet of code that basically looked like this:
   $("#id")["addClass"]("addedClass");
I understand what it is doing but what is this operation called? Is it considered jQuery or Javascript? I haven't seen this before. In the past I would've done something like:
 $("#id").addClass("addedClass");
 
    