Stack:
Inserting element into last of your array, remove element top of your array(LIFO).
let stack = [];
//insert element
stack.push(1);
stack.push(2);
stack.push(3);
//output [1,2,3]
//remove element
stack.pop()
//output [1,2]
For further actions, you may consider blocking this person and/or reporting abuse
Jefferson Alves -
Cezar Augusto Mezzalira -
Serif COLAKEL -
Nirmal Kumar -
Once suspended, aruns128 will not be able to comment or publish posts until their suspension is removed.
Once unsuspended, aruns128 will be able to comment and publish posts again.
Once unpublished, all posts by aruns128 will become hidden and only accessible to themselves.
If aruns128 is not suspended, they can still re-publish their posts from their dashboard.
Once unpublished, this post will become invisible to the public and only accessible to Arunkumar Subramani.
They can still re-publish the post if they are not suspended.
Thanks for keeping DEV Community safe. Here is what you can do to flag aruns128:
Unflagging aruns128 will restore default visibility to their posts.
Top comments (0)