| scriptEngineMinorVersion() This function is used to return the 'minor' version number of the scripting engine. The minor number is the number after the decimal in the version number. For example, in the returned value of IE 4.5, the minor version number is the '.5'. This is useful when wanting to redirect users of a specific script engine build to a page which supports that build or has workarounds for any flaws. syntax: scriptEngineMinorVersion() EXAMPLE document.write(The Scripting Engine Minor Version is: " + scriptEngineMinorVersion() ); This example writes to the screen the words within the document.write call to the scriptEngineMinorVersion() method. |