> For the complete documentation index, see [llms.txt](https://polux.gitbook.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://polux.gitbook.io/docs/objects/omit-types.md).

# \_.omitTypes

Returns one or more objects omitting the values ​​of defined types

### \_.omitTypes(types, objects)

> **Parameters:**

* **types \[string or array of strings]**: <mark style="color:yellow;">`the types to be omitted`</mark>
* **objects \[object or array of objects]:** <mark style="color:yellow;">`the objects that will have their values ​​omitted`</mark>

> **Example**:

```javascript
_.omitTypes('number', {name: 'drezzy', age: 17, birthday: 11})
// => { name: 'drezzy'}  
```
