[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-09-04 UTC."],[],[],null,["# Function: math.floor\n\nReturns the floor of a number.\n\nRounds down to the largest integer less than or equal to a given number.\n\nArguments\n---------\n\nRaised exceptions\n-----------------\n\nExamples\n--------\n\n### Example 1\n\n```yaml\n# Return floor of a number\n# For example, returns `23` \n- returnStep:\n return: ${math.floor(23.67)}\n```\n\n### Example 2\n\n```yaml\n# Return floor of a number\n# For example, returns `-24` \n- returnStep:\n return: ${math.floor(-23.67)}\n```\n\n### Example 3\n\n```yaml\n# Return floor of a number\n# For example, returns `0` \n- returnStep:\n return: ${math.floor(0)}\n```"]]