I have an array called tagline that looks like this:
JavaScript
x
2
1
[" Leger Poll", " Web survey of 2", "test", "test", "test", "test"]
2
it is pulled from an external CSS file. I have assigned it a variable name tagline
.
I want to print the first and second elements using document.getElementById
so that I can style the text. I am not sure why this is not working? I tried pulling the variable outside of the main function so that it would be global but still not working. I am a beginner coder. Here is what I have. Please help.
JavaScript
1
36
36
1
var tagline = [];
2
3
4
async function getData() {
5
// const response = await fetch('testdata.csv');
6
var response = await fetch('data/test3.csv');
7
var data = await response.text();
8
data = data.replace(/"/g, "");
9
var years = [];
10
var vals = [];
11
12
var rows = data.split('n').slice(1);
13
14
rows = rows.slice(0, rows.length - 1);
15
rows = rows.filter(row => row.length !== 0)
16
17
rows.forEach(row => {
18
var cols = row.split(",");
19
years.push(cols[0]);
20
vals.push(0 + parseFloat(cols[1]));
21
tagline.push(cols[2]);
22
});
23
24
console.log(years, vals, tagline);
25
return { years, vals, tagline };
26
27
28
}
29
var res = tagline.slice(1);
30
document.getElementById("demo1").innerHTML = res;
31
var res2 = tagline.slice(2);
32
document.getElementById("demo2").innerHTML = res2;
33
34
35
</script> ```
36
Advertisement
Answer
It seems You defined the function getData()
but you didn’t call it to execute.
Since you use Async function, I am using then()
.
JavaScript
1
15
15
1
var tagline = [];
2
3
async function getData() { // your function }
4
5
getData().then(() => {
6
7
const res = tagline[0];
8
document.getElementById("demo1").innerHTML = res;
9
10
const res2 = tagline[1];
11
document.getElementById("demo2").innerHTML = res2;
12
13
});
14
15