I have used solidity to push data into an array. Is there a similar function for pop ?
string[] myArray; myArray.push(\"hello\")
What is the be
Yes there is, as of v0.5.0 (details here):
Dynamic storage arrays and bytes (not string) have a member function called pop that you can use to remove an element from the end of the array. This also implicitly calls :ref:delete on the removed element.