I've read code that has snippets similar to this but I obviously forgot the semantics:
let serve = target || "Hello World";
In other words if target is null, the serve equals Hello World. My goal, since target is null, is to get serve to be Hello Word ...
If I run the function as stated node prints this:
ReferenceError: target is not defined