> For the complete documentation index, see [llms.txt](https://soufatn.gitbook.io/rxjs-book/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://soufatn.gitbook.io/rxjs-book/summary/observable/observable_instance_methods/bufferwithcount.md).

# bufferWithCount

Projects each element of an observable sequence into zero or more buffers which are produced based on element count information.

## Arguments

1. `count` *(`Function`)*: Length of each buffer.
2. `[skip]` *(`Function`)*: Number of elements to skip between creation of consecutive buffers. If not provided, defaults to the count.

## Returns

*(`Observable`)*: An observable sequence of buffers.

## Example

### Without a skip

### Using a skip
