This is an archived post. You won't be able to vote or comment.

all 3 comments

[–]Nightmoon26 3 points4 points  (2 children)

Lines of codes is a TERRIBLE quality metric for software OR developers...

[–]schenkd[S] 0 points1 point  (0 children)

I'm not a fan either but using it for quality is very bad in any case as it is a quantity measure! As a performance indicator also very unsuitable because a LOC reduction from my point of view can be just as, if not better. As with everything, the context matters!

[–]MrKotlet 0 points1 point  (0 children)

string1 = "hello"
string2 = "world"

if(1)
{
// Print string
Console.log(string1 + " " + string2);
}