This commit is contained in:
Boof 2023-04-28 10:34:15 +02:00 committed by GitHub
parent bff36dac77
commit 4f9cb04822
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,7 +9,7 @@ processButton.addEventListener("click", function () {
inputText = textInput.value;
lines = inputText.split(/[\n\r]+/);
console.log(lines);
modifiedArr = lines.map(i => '"' + i + '" ');
modifiedArr = lines.map(i => ' "' + i + '"');
console.log(modifiedArr)
});