Skip to content
Advertisement

How do I print just the first and second element of an array?

I have an array called tagline that looks like this:

JavaScript

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

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
User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement