Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7439031
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T10:38:44+00:00 2026-05-29T10:38:44+00:00

How would I remove any object from my array notafications where I.active = false

  • 0

How would I remove any object from my array notafications where I.active = false?

Clarification:
I am basically trying to have a certain object in the array “mark itself for deletion” once it performs what it needs to.

I push the parameters to the array with this code:

notafications.push(notafication({
    font: "60px pong",
    baseline: "top",
    align: "left",
    color: "#FFFFFF",
    text: "this is a test",
    x: 100,
    y: 100
}));

Then this function does its logical voodoo to it:

function notafication(I) {
I.active = true;
I.render = true;
I.count = 3;
I.flashTimer = setInterval(function() {
    if (!pingpong.paused) {
        I.count--;
        if (I.count%2 == 1) {
            I.render = true;
        }
        else {
            I.render = false;
        }
        if (I.count == 0) {
            clearInterval(I.flashTimer);
            I.render = false;
            I.active = false;
        }
    }
},750);
return I;
}

And finally, here is the notification rendering segment of my gameloop.

if (render.notafication) {
    notafications.forEach(function notafication(I) {
        ctx.font = I.font;
        ctx.textAlign = I.align;
        ctx.textBaseline = I.baseline;
        ctx.fillStyle = I.color;
        if (I.render) {
            ctx.fillText(I.text,I.x,I.y);
        }
    });
}

Note:
Yes, I know I have notification spelled wrong in my code. I’ve just continued to spell it wrong on purpose until this portion of the code is done. Then I’ll find-replace it to the correct spelling.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-29T10:38:45+00:00Added an answer on May 29, 2026 at 10:38 am

    So much for needing help with this. I figured out the solution.

    I simply added this bit of code to my gameloop:

    notafications = notafications.filter(function notafication(I) {
        return I.active;
    });
    

    Hopefully this will be of use to someone in the future.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to remove a class object from list<boost::any> l l.remove(class_type); I tried writing
I currently have a log object I'd like to remove objects from, based on
I'm trying to remove properties from an object if its name has a length
i would like to remove the last line from my string.. the nsstring object
How would I remove the border from an iframe embedded in my web app?
I would like to remove the domain/computer information from a login id in C#.
I would like to remove two files from a folder at the conclusion of
I would like to remove selected commit log entries from a linear commit tree,
I would like to remove a trailing slash from a string. For example if
I would like to remove an old JPanel from the Window (JFrame) and add

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.