Skip to content

Instantly share code, notes, and snippets.

@azharkhan
Created May 11, 2017 19:19
Show Gist options
  • Save azharkhan/64f3f983fc3058d4f06ed1d0e68442d9 to your computer and use it in GitHub Desktop.
Save azharkhan/64f3f983fc3058d4f06ed1d0e68442d9 to your computer and use it in GitHub Desktop.
Testing `getTitle`
const user = {
t: '',
companyName: 'SkyNet'
};
let result = [user.t, user.companyName].filter(function(item) {
return !_.isNil(item);
}).join(' at ');
console.log(result);
<script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.4/lodash.min.js"></script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment