I am trimming an array this way using lodash
var data_parts = lodash._.map(strData.split("|"), lodash._.trim);
but I don’t see the lodash. prefix in most examples that I see on websites. They almost all just use _.map
Any clarification why I need to use lodash._.map
whereas examples on lodash website just uses _.map