4. toggleCommentButton // Receives a postId as the parameter //b. Selects the button with the data-post-id attribute equal to the postId received as a //parameter //c. If the button textContent is 'Show Comments' switch textContent to 'Hide //Comments' //d. If the button textContent is 'Hide Comments' switch textContent to 'Show //Comments' //e. Suggestion (not required) for above: try a ternary statement //f. Return the button element   Help fix this function in JavaScript const toggleCommentButton = (postID) => {     if (!postID) {         return;   }       const selectedButton = document.getElementById(selectMenu); //document.querySelector('button');       if (selectedButton != null) {       selectedButton.textContent === "Show Comments"         ? (selectedButton.textContent = "Hide Comments")         : (selectedButton.textContent = "Show Comments");     }       return selectedButton;     };

Programming with Microsoft Visual Basic 2017
8th Edition
ISBN:9781337102124
Author:Diane Zak
Publisher:Diane Zak
Chapter1: An Introduction To Visual Studio 2017 And Visual Basic
Section: Chapter Questions
Problem 6E
icon
Related questions
Question
//4. toggleCommentButton
// Receives a postId as the parameter
//b. Selects the button with the data-post-id attribute equal to the postId received as a
//parameter
//c. If the button textContent is 'Show Comments' switch textContent to 'Hide
//Comments'
//d. If the button textContent is 'Hide Comments' switch textContent to 'Show
//Comments'
//e. Suggestion (not required) for above: try a ternary statement
//f. Return the button element
 
Help fix this function in JavaScript
const toggleCommentButton = (postID) => {

    if (!postID) {
        return;
  }
 
    const selectedButton = document.getElementById(selectMenu); //document.querySelector('button');
 
    if (selectedButton != null) {
      selectedButton.textContent === "Show Comments"
        ? (selectedButton.textContent = "Hide Comments")
        : (selectedButton.textContent = "Show Comments");
    }
 
    return selectedButton;
 
  };
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
Mouse Control
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Programming with Microsoft Visual Basic 2017
Programming with Microsoft Visual Basic 2017
Computer Science
ISBN:
9781337102124
Author:
Diane Zak
Publisher:
Cengage Learning
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT
Microsoft Visual C#
Microsoft Visual C#
Computer Science
ISBN:
9781337102100
Author:
Joyce, Farrell.
Publisher:
Cengage Learning,