Last analyzed 424cb2d 6 days ago
Default analysis branch is
Currently analyzing run
Avoid square-bracket notation when accessing properties JS-0049
Anti-pattern
7 months ago10 months old
["class"] is better written in dot notation
 18
 19function simpleLightbox(properties = {}, customCSS = {}, $elements = []) {
 20	if(properties["class"] === undefined)
 21		properties["class"] = "lightbox"; 22	let defaultCSS = {
 23		"display": "inline-block",
 24		"top": "50%",
["class"] is better written in dot notation
 17}
 18
 19function simpleLightbox(properties = {}, customCSS = {}, $elements = []) {
 20	if(properties["class"] === undefined) 21		properties["class"] = "lightbox";
 22	let defaultCSS = {
 23		"display": "inline-block",