---
title: multiply
framework: webkitjs
role: symbol
role_heading: Instance Method
path: webkitjs/webkitcssmatrix/1631528-multiply
---

# multiply

Returns the result of multiplying this matrix by a given matrix that is on the right.

## Declaration

```data
WebKitCSSMatrix multiply(
    optional WebKitCSSMatrix? secondMatrix
);
```

## Parameters

- `secondMatrix`: The matrix to multiply.

## Return Value

Return Value A new matrix that is the result of multiplying this matrix by the given matrix.

## Discussion

Discussion The given matrix is on the right of the multiplication. This matrix is not modified by this method.

## See Also

### Applying Operations

- [inverse](webkitjs/webkitcssmatrix/1633805-inverse.md)
- [translate](webkitjs/webkitcssmatrix/1630758-translate.md)
- [scale](webkitjs/webkitcssmatrix/1632184-scale.md)
- [rotate](webkitjs/webkitcssmatrix/1629773-rotate.md)
- [rotateAxisAngle](webkitjs/webkitcssmatrix/1632317-rotateaxisangle.md)
- [skewX](webkitjs/webkitcssmatrix/1633353-skewx.md)
- [skewY](webkitjs/webkitcssmatrix/1631022-skewy.md)
