This commit is contained in:
Boof 2023-04-28 10:30:11 +02:00 committed by GitHub
parent db4a35ea5c
commit bff36dac77
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)
});