{"ScriptPreparationCode":"jQuery.fn.fastCss = function(property, value)\r\n{\r\n this.each(function(){\r\n this.style[property] = value;\r\n });\r\n}\r\n\r\njQuery.fn.fastMultipleCss = function(obj)\r\n{\r\n this.each(function(){\r\n for (const [key, value] of Object.entries(obj))\r\n this.style[key] = value;\r\n });\r\n}","TestCases":[{"Name":"jQuery css","Code":"const a = $(\u0022.a\u0022);\r\na.css(\u0022height\u0022, \u0022100vh\u0022);\r\na.css(\u0022width\u0022, \u0022100vw\u0022);\r\na.css(\u0022margin-top\u0022, \u002250px\u0022);","IsDeferred":false},{"Name":"JS style","Code":"const a = $(\u0022.a\u0022);\r\na.each(function(){\r\n const v = $(this)[0];\r\n v.style.height = \u0022100vh\u0022;\r\n v.style.width = \u0022100vw\u0022;\r\n v.style[\u0022margin-top\u0022] = \u002250px\u0022;\r\n});","IsDeferred":false},{"Name":"jQuery fastCss","Code":"const a = $(\u0022.a\u0022);\r\na.fastCss(\u0022height\u0022, \u0022100vh\u0022);\r\na.fastCss(\u0022width\u0022, \u0022100vw\u0022);\r\na.fastCss(\u0022margin-top\u0022, \u002250px\u0022);","IsDeferred":false},{"Name":"jQuery fastMultipleCss","Code":"const a = $(\u0022.a\u0022);\r\na.fastMultipleCss({height: \u0022100vh\u0022, width: \u0022100vw\u0022, \u0022margin-top\u0022: \u002250px\u0022});","IsDeferred":false}]}