+ 4
What is dynamic data structure???
2 ответов
+ 2
check here https://computer.howstuffworks.com/c27.htm
+ 2
An example of NON dynamic data structures are arrays in java: once you've declared them you can't change their length, i.e. you can't add or remove elements.
However arrays in js ARE dynamic you can add elements, you can remove elements, you can inject elements and you can splice elements.