#!/usr/bin/env node; /****************************************************************************** * This program demonstrates string concatenation. * * Copyright © 2020 Richard Lesh. All rights reserved. *****************************************************************************/ const main = async () => { const a = "one"; const b = "two"; const c = "three"; let d = a + b + c; console.log(d); d = a + "\t" + b + "\n" + c; console.log(d); } main().catch( e => { console.error(e) } );