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;
2.1m questions
2.1m answers
60 comments
57.0k users