-
Notifications
You must be signed in to change notification settings - Fork 63
Open
Description
Hello, I thank you for Your code. I have a Question.
`
myForm.addEventListener("submit", function (e) {
e.preventDefault();
const input = csvFile.files[0];
const reader = new FileReader();
reader.onload = function (e) {
const text = e.target.result;
const data = csvToArray(text);
document.write(JSON.stringify(data));
};
reader.readAsText(input);
});
`
how can I get data from outside for use it in anover functions as Parameter?
best regards
Wilhelm
Metadata
Metadata
Assignees
Labels
No labels