I do believe "graceful degradation" remains an important concept, although the decision of how much to invest and how gracefully to degrade is a business one, not really a technical one. IOW, it's up to the "business side" stakeholders to decide how the inevitably scarce development resources must be prioritized among various features that (hopefully;-) deliver business value: some of those features are ones oriented to supporting peculiar browsers (including ones with broken Javascript or other ever weirder issues;-), while some are connected to optimizing user experience for users with widespread modern browsers.
For a clean architecture, the back-end should not involve itself in presentation issues (including presence or absence of Javascript;-) but essentially deliver a clean interface to storage and business-logic functionality (whether full REST, a REST-like variant with less emphasis on hypertext discovery of URIs, or something even more RPC-y -- that's another debate, as is the one about whether generic payloads should be XML, JSON, or what else, etc; I'll gladly debate those other issues, but ideally not on THIS question/thread;-).
Presenting info to the user, receiving user input, and interacting with the backend to retrieve and deliver information, are the front-end's task. A "thin-server architecture" like the one I'm proposing (see here, net of the various "side issues" above mentioned;-) is ideally suitable to multiple front-end implementations, as may be needed e.g. for optimal user experience on drastically different devices... which does include "smart devices with modern JS support" all the way to "basically braindead ones", just as it includes (e.g.) tiny screens all the way to 30" ones, no audio all the way to surround sound quality, etc, etc;-).
So clearly one implementation of the front-end could be entirely in Javascript on the browser (probably using Dojo, jQuery, or the like, too); at the other extreme, another implementation might be entirely server-side and deliver and receive HTML 1.0 (no CSS allowed) on HTTP 0.9, thoroughly tested for compatibility with NCSA Mosaic (the pre-beta developers-only version of course, you can't take it for granted that everybody has updated yet, right?-). What audience you MUST support, with what priority, is a business side decision that will dictate the priority and allocation of resources between these front-end efforts and others yet.
Aside: developing > 1 front-end at once, while it may delay "hitting market", would help ensure that the back-end IS quite as general and powerful as it should be; this is a similar consideration to the one Brooks offers as to why the IBM/360 Architecture -- despite being the very first time "architecture" was considered as a separate issue from implementation -- came out so well: since > 1 implementation (in HW and microcode in various mixes) were proceeding at the same time, the architecture team, captained by Gene Amdahl, had a chance to resist the pulls and pushes from the various implementation teams to bend the architecture that way or this way to make one implementation's job easier!-)
Whenever you have > 1 front-end, the base URL that the user hit is responsible for sniffing the user agent characteristics and redirecting appropriately ASAP to the best available front-end for that combination of characteristics. These front-end-specific URLs should also be nice and clean so users can bookmark them &c directly and sensibly, BTW.
Similarly to the prioritization issue, deciding how much degradation of user experience is acceptable in the "allegedly-gracefully" degraded front-ends is ALSO a business decision. How important to the business are users with old or deliberately-degraded browsers? It's not an engineering problem, it's a business one. The engineers' job is to carefully research the possibilities and inform the business users of their costs (esp. in term of development time and technical risk) and technical benefits, not to weigh those against the business value. BTW, by "business value" I do NOT mean just money!!! A non-profit or government site must similarly decide who they're serving, with what priority, etc. It may be uncomfortable to make these decisions explicitly - easier to hide behind the veil of alleged "technical necessity"!-) - but I'm adamant that in the long run explicit and transparent decision making is best for all involved!-)