What are the differences between using = {}; and = "";

Declaring a variable, it’s basically one of the first things anyone is taught. It’s also what you have been asking about in this thread: you’ve declared a variable and have then been asking which completely random value to assign to it.

3 Likes

I just noticed the animation fade-out of the play buttons works

With this line removed: https://jsfiddle.net/kLdfr0pv/

//let currentPlayButton;

How can that be though? How is that possible?

function animationEndHandler(evt) {
    const animationName = evt.animationName;

    if (animationName === "initial-fade") {
      body.classList.remove("initial-fade");
      showCover(currentPlayButton);
    }
  }

  function coverClickHandler(evt) {
    currentPlayButton = evt.currentTarget;
    body.classList.add("initial-fade");
  }

It sounds like you don’t understand the basic design of the code you wrote. Perhaps leaning the basic fundamentals of programming would help you understand what you are doing.

1 Like

You are creating a global variable by not declaring it. After you have clicked the button you can check it in the console.

window.currentPlayButton

You would know how and why this works if you had bothered to learn the language you are trying to use.

2 Likes

How am I able to see this? window.currentPlayButton

console inside where?

browser, or jsfiddle?

Both but it won’t get logged the same way. The browser console will show the DOM element and the jsfiddle console will show it as an object.

If you manually type window.currentPlayButton in the browser console you have to be inside the correct context. Using Inspect on the page first before going to the console tab should put you in the correct context. Otherwise, you can use the JavaScript context dropdown menu near the top of the browser console tab (dropdown to the right of the clear button).

1 Like

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.