Skip to main content
Version: 3.33.2

FormData.forEach()

The forEach() method of the FormData interface executes the provided callback function once for each key/value pair in the FormData object.

Syntax

forEach(callbackFn)
forEach(callbackFn, thisArg)

Parameters

  • callbackFn
    • : A function to execute for each entry in the object. The function will be passed the following arguments:
      • value
        • : The value of the current entry.
      • key
        • : The key of the current entry.
      • formData
        • : The FormData object being traversed.
  • thisArg optional
    • : A value to use as this when executing callbackFn.

Return value

undefined