I've found this piece in a script
var name = project.SMALL_WIDTH//p.containerWidth() /// 2//project.WIDTH / 4
What do the double and the triple slash mean?
The double slash is a comment. Triple slash doesn't mean anything special, but it might be a comment that was added right before a division.
var a = 10 / 2; var a = 10 /// 2;
1.4m articles
1.4m replys
5 comments
57.0k users