Get in js when using function methods

when looking up the map method in jq, the W3C document has this code

$("p").append( $("input").map(function(){
  return $(this).val();
}).get().join(", ") );

after searching get (), there is no relevant explanation. What is this get?

Mar.01,2021

jquery official document
sometimes you can look at something other than W3C, such as official document


.

get () gets the DOM element method corresponding to the selector

https://developer.mozilla.org. MDN search box


convert JQuery objects to js objects
http://jquery.cuishifeng.cn/g.


how can it not be found

Menu