Question #109

Author: admin
tags: JavaScript  
console.log(5 + /* 5 */ 5);
What will the console output be?
0.2
5
10
15
555
Nothing. There will be an error.
/* */ is a syntax for creating multiline comment.
Such a comment can even be inserted inside an expression.
Rate the difficulty of the question:
easyhard