With the upgrades of cfscript in ColdFusion 9 I am starting to see a lot more components written in script(Yes!). With that I am starting to see a lot of the following. First off Its just a personal preference but attributes after the method arguments is really ugly. If you notice the output for both the component and the method has been set to false. While this was needed in tag based components this is not required in script based components. Nathan Strutz has a really good explanation of this over on Stack Overflow . Nathan's short answer is below but I would head over to the site and check out the full explanation.
cfscript does not output anything unless you explicitly call writeOutput() from it. This includes functions in cfscript as well as any cfscript code outside of a function. This is different from CF tags' syntax, which, by default, output at least whitespace between the tags. In cfscript, any text you write will be compiled by the CFML engine. in CF tags, any text you write will be written to the output buffer and sent to browser.

#1 by Sam Farmer on 1/25/10 - 1:28 PM
#2 by Nathan Strutz on 1/25/10 - 3:15 PM
#3 by Marko Simic on 1/25/10 - 3:18 PM
#4 by Henry Ho on 1/25/10 - 3:52 PM
#5 by Ben Nadel on 1/25/10 - 10:01 PM
#6 by Dan Vega on 1/25/10 - 10:11 PM
#7 by Marko Simic on 1/26/10 - 7:20 AM
Ha, that's because you are privileged to work on CF9 platform :)
I still work on CF9 only on personal projects, at work CF8 is and will be alpha and omega....for considerable amount of time :)
#8 by maertsch on 1/26/10 - 10:20 AM
Now in CF9 you can use include() function, and then there will be output - like ben said. But with an added output=false the included output will be disabled.
And when you don't use a include in your script, then you can use the function() also in CF8.
Thank you for de refresh.