1. Program that reads two strings and appends the first string to the second. For example
if the first string is entered as Tamil and second string as nadu, the program should pre
Tamilnadu. Use string library header
Answers
Answered by
1
Answer:
let str1 = 'tamil';
let str2 = 'nadu';
str2 = str1+str2
str2 = 'tamilnadu'
explained in JS.
ahamedthowfic38:
thank you bro
Similar questions