Study finds intermittent fasting helps maintain Weight Loss“>weight loss for at least a year
Study finds intermittent fasting helps maintain weight loss for at least a year
Read this story aloud
Listen to the clean text version of this article
Ready
6 min listen
Audio reading is not supported on this browser.
Intermittent fasting is an eating pattern that focuses on when you eat rather than what you eat. It involves alternating between periods of eating and periods of fasting, during which you do not consume calorie-containing foods or drinks
Intermittent fasting, especially the popular 16:8 method, can help people maintain weight loss for at least one year, according to a new study.
The findings suggest that limiting meals to an eight-hour eating window each day is a simple and flexible way for adults who are overweight or living with obesity to manage their weight over the long term, according to the study published in Clinical Nutrition.
Intermittent fasting is an eating pattern that focuses on when you eat rather than what you eat. It involves alternating between periods of eating and periods of fasting, during which you do not consume calorie-containing foods or drinks.
More To Read
- Unregulated peptides marketed for weight loss, anti‑ageing pose serious risks to women
- Five-minute walks every hour could boost health and productivity, study finds
- Study links ultra-processed foods to slower thinking, reduced attention in adults
- New weekly triple-action diabetes injection linked to significant weight loss and better health
- Health advocates sound alarm over Kenya’s normalised ultra-processed food marketing
- New study links deep belly fat reduction to sharper thinking later in life
The most common method is the 16:8 approach, where a person fasts for 16 hours and eats all their meals within an eight-hour window each day. For example, someone might eat between 9:00 am and 5:00 pm or 1:00 pm and 9:00 pm, then avoid food until the next eating window begins. During the fasting period, people can usually drink water, black coffee, or unsweetened tea, according to experts.
Intermittent fasting is often used to help with weight loss, improve blood sugar control, and support heart and metabolic health, though experts recommend combining it with a healthy diet and regular exercise for the best results.
In the study, researchers sought to find out whether the weight people lost during intermittent fasting could be maintained after the program ended. Previous studies showed that intermittent fasting could help people lose weight over a few weeks or months, but there was little evidence on whether those benefits lasted over time.
Latest Stories
- Police to mount checkpoints across Nairobi ahead of 2026 Saba Saba commemoration, warn against unlawful acts
- Government to launch forceful disarmament in Tana River County after amnesty ends
- Suspects held over Linda Mwananchi convoy attack in Kisii remain in custody as missing files delay plea
- Peace team sounds alarm over gang attacks on worship centres and peaceful gatherings
The study involved 99 adults who were either overweight or living with obesity. About half of the participants were women. During the first 12 weeks, they were divided into four groups.
One group continued with their normal eating pattern, which usually involved eating over a period of 12 hours or more each day. The other three groups followed the 16:8 intermittent fasting plan.
One fasting group ate all their meals between 9:00 am and 5:00 pm, known as early time-restricted eating. Another group ate between 1:00 pm and 9:00 pm, known as late time-restricted eating.
The third fasting group chose an eight-hour eating window that best suited their daily routine. All participants also received advice on following a healthy Mediterranean diet, which encourages eating fruits, vegetables, whole grains, legumes, fish, nuts, olive oil, and other healthy foods.
Researchers measured each participant’s body weight, body fat, and lean muscle before the study began, at the end of the 12-week program, and again one year later.
The results showed that participants who practised intermittent fasting maintained significantly more weight loss after one year than those who continued with their usual eating pattern. This was true whether they chose to eat earlier or later in the day.
“Participants who followed the earlier eating schedule also maintained a greater reduction in body fat than the other groups, suggesting that eating earlier in the day may offer additional benefits for body composition,” the researchers said.
The findings are encouraging because maintaining weight loss is often much more difficult than losing weight in the first place. Many people regain the weight they lost within months after completing a diet or weight-loss program. The study suggests that intermittent fasting may help people avoid this common problem.
The researchers also found that about one in three participants continued practising intermittent fasting on their own during the year after the study ended. This suggests that many people found the eating pattern practical, flexible, and easy to include in their everyday lives without ongoing supervision.
The study builds on earlier findings published in Nature Medicine, where the same research project showed that people practising time-restricted eating lost an average of 3 to 4 kilograms more than participants who only received healthy eating advice.
“One of the strengths of the study is that it compared different fasting schedules instead of focusing on only one. Since both the early and late eating windows produced similar results, people may be able to choose the schedule that best fits their work, family, and social commitments while still enjoying the benefits of intermittent fasting,” the researchers shared.
The researchers believe this flexibility could make it easier for people to stick with the eating pattern over the long term. Many weight-loss programs fail because they are difficult to follow, but allowing people to choose an eating schedule that suits their lifestyle may improve long-term success.
Although the findings are promising, the researchers noted that intermittent fasting is not a magic solution. Healthy food choices, regular physical activity, adequate sleep, and other healthy habits remain important for achieving and maintaining a healthy weight.
They also advise people with diabetes, pregnant women, or anyone with an underlying medical condition to speak with a healthcare professional before starting intermittent fasting.
Other Topics To Read
Top Stories Today
- Saba Saba 2026: Police announce checkpoints in Nairobi
- Government warns Tana River gun holders as forceful disarmament looms
- Suspects held over Kisii Linda Mwananchi violence as court awaits case file
- Duale, Oduor accused of defying High Court order on KNDI appointments
- Peace team warns hired gangs threaten 2027 elections
- Why Africa’s colonial-era wildlife laws are failing both people and nature
`;
}
return “;
}
function commentActionsMarkup(comment, canComment) {
const likeLabel = comment.liked_by_me ? ‘Liked’ : ‘Like’;
const likeCount = Number(comment.like_count || 0) > 0
? “
: ”;
const likeButton = canComment && comment.status === ‘approved’
? “
: “;
const replyButton = canComment && comment.status === ‘approved’
? “
: ”;
return `
`;
}
function commentMarkup(comment, canComment, isReply = false) {
const pendingBadge = comment.status && comment.status !== ‘approved’
? “
: ”;
const edited = comment.is_edited
? “
: ”;
const repliesHtml = Array.isArray(comment.replies) && comment.replies.length
? `
`
: “;
return `
`;
}
function replyFormMarkup(commentId) {
return `
`;
}
function setNotice(widget, message, type = ‘info’) {
const notice = widget.querySelector(‘[data-role=”notice”]’);
if (!notice) return;
if (!message) {
notice.hidden = true;
notice.textContent = ”;
notice.classList.remove(‘is-error’);
return;
}
notice.hidden = false;
notice.textContent = message;
notice.classList.toggle(‘is-error’, type === ‘error’);
}
function setCount(widget, total) {
const count = widget.querySelector(‘[data-role=”count”]’);
if (!count) return;
const num = Number(total || 0);
count.textContent = num === 1 ? ‘1 comment’ : `${num} comments`;
}
function openReplyBox(widget, commentId) {
widget.querySelectorAll(‘[data-role=”reply-box”]’).forEach(box => {
box.hidden = true;
box.innerHTML = ”;
});
const targetItem = widget.querySelector(`.ev-comments__item[data-comment-id=”${commentId}”]`);
if (!targetItem) return;
const replyBox = targetItem.querySelector(‘[data-role=”reply-box”]’);
if (!replyBox) return;
replyBox.hidden = false;
replyBox.innerHTML = replyFormMarkup(commentId);
const textarea = replyBox.querySelector(‘textarea’);
if (textarea) textarea.focus();
}
function closeReplyBox(container) {
if (!container) return;
container.hidden = true;
container.innerHTML = ”;
}
async function initCommentsWidget(widget) {
const state = {
articleId: Number(widget.dataset.articleId),
loadUrl: widget.dataset.loadUrl,
storeUrl: widget.dataset.storeUrl,
commentsBaseUrl: widget.dataset.commentsBaseUrl,
canComment: widget.dataset.canComment === ‘1’,
page: 1,
perPage: 10,
sort: ‘newest’,
total: 0,
hasMore: false,
busy: false
};
const list = widget.querySelector(‘[data-role=”list”]’);
const loading = widget.querySelector(‘[data-role=”loading”]’);
const empty = widget.querySelector(‘[data-role=”empty”]’);
const loadMoreBtn = widget.querySelector(‘[data-role=”load-more”]’);
const sortSelect = widget.querySelector(‘[data-role=”sort”]’);
const composerForm = widget.querySelector(‘[data-role=”composer-form”]’);
async function loadComments(reset = true) {
if (state.busy) return;
state.busy = true;
setNotice(widget, ”);
loading.hidden = false;
if (reset) {
state.page = 1;
list.innerHTML = ”;
empty.hidden = true;
}
try {
const url = new URL(state.loadUrl, window.location.origin);
url.searchParams.set(‘page’, state.page);
url.searchParams.set(‘per_page’, state.perPage);
url.searchParams.set(‘sort’, state.sort);
const response = await requestJson(url.toString(), {
method: ‘GET’,
headers: {
‘Accept’: ‘application/json’,
‘X-Requested-With’: ‘XMLHttpRequest’
}
});
const items = Array.isArray(response.data) ? response.data : [];
const meta = response.meta || {};
state.total = Number(meta.total || 0);
state.hasMore = !!meta.has_more;
setCount(widget, state.total);
if (reset) {
list.innerHTML = ”;
}
if (!items.length && reset) {
empty.hidden = false;
} else {
empty.hidden = true;
list.insertAdjacentHTML(
‘beforeend’,
items.map(item => commentMarkup(item, state.canComment, false)).join(”)
);
}
loadMoreBtn.hidden = !state.hasMore;
} catch (error) {
if (!list.children.length) {
empty.hidden = false;
empty.textContent = ‘Unable to load comments right now.’;
}
setNotice(widget, error.message || ‘Unable to load comments.’, ‘error’);
} finally {
loading.hidden = true;
state.busy = false;
}
}
async function submitTopLevelComment(form) {
const textarea = form.querySelector(‘textarea[name=”content”]’);
const button = form.querySelector(‘[data-role=”submit-comment”]’);
if (!textarea) return;
const content = textarea.value.trim();
if (!content) return;
const originalText = button ? button.textContent : ”;
try {
if (button) {
button.disabled = true;
button.textContent = ‘Posting…’;
}
const response = await requestJson(state.storeUrl, {
method: ‘POST’,
headers: buildJsonHeaders(),
body: JSON.stringify({
article_id: state.articleId,
content: content,
source_url: window.location.href
})
});
textarea.value = ”;
if (response?.data) {
list.insertAdjacentHTML(
‘afterbegin’,
commentMarkup(response.data, state.canComment, false)
);
empty.hidden = true;
if ((response.data.status || ”) === ‘approved’) {
state.total += 1;
setCount(widget, state.total);
}
}
setNotice(widget, response.message || ‘Comment posted successfully.’);
} catch (error) {
setNotice(widget, error.message || ‘Unable to post comment.’, ‘error’);
} finally {
if (button) {
button.disabled = false;
button.textContent = originalText || ‘Post comment’;
}
}
}
async function submitReply(form) {
const commentId = Number(form.dataset.commentId || 0);
const textarea = form.querySelector(‘textarea[name=”content”]’);
const button = form.querySelector(‘.ev-comments__reply-submit’);
if (!commentId || !textarea) return;
const content = textarea.value.trim();
if (!content) return;
const originalText = button ? button.textContent : ”;
try {
if (button) {
button.disabled = true;
button.textContent = ‘Posting…’;
}
const response = await requestJson(`${state.commentsBaseUrl}/${commentId}/reply`, {
method: ‘POST’,
headers: buildJsonHeaders(),
body: JSON.stringify({
article_id: state.articleId,
content: content,
source_url: window.location.href
})
});
if (response?.data) {
const parentItem = widget.querySelector(`.ev-comments__item[data-comment-id=”${commentId}”]`);
if (parentItem) {
const repliesWrap = parentItem.querySelector(‘.ev-comments__replies’);
if (repliesWrap) {
repliesWrap.insertAdjacentHTML(
‘beforeend’,
commentMarkup(response.data, state.canComment, true)
);
}
}
}
closeReplyBox(form.closest(‘[data-role=”reply-box”]’));
setNotice(widget, response.message || ‘Reply posted successfully.’);
} catch (error) {
setNotice(widget, error.message || ‘Unable to post reply.’, ‘error’);
} finally {
if (button) {
button.disabled = false;
button.textContent = originalText || ‘Post reply’;
}
}
}
async function toggleLike(button) {
const commentId = Number(button.dataset.commentId || 0);
if (!commentId) return;
const originalHtml = button.innerHTML;
try {
button.disabled = true;
button.innerHTML = ‘Working…’;
const response = await requestJson(`${state.commentsBaseUrl}/${commentId}/like`, {
method: ‘POST’,
headers: buildJsonHeaders(),
body: JSON.stringify({})
});
const liked = !!response?.data?.liked;
const likeCount = Number(response?.data?.like_count || 0);
button.classList.toggle(‘is-liked’, liked);
button.innerHTML = `${liked ? ‘Liked’ : ‘Like’} ${likeCount > 0 ? “ : ”}`;
} catch (error) {
button.innerHTML = originalHtml;
setNotice(widget, error.message || ‘Unable to update like.’, ‘error’);
} finally {
button.disabled = false;
}
}
if (composerForm) {
composerForm.addEventListener(‘submit’, function (e) {
e.preventDefault();
submitTopLevelComment(composerForm);
});
}
if (sortSelect) {
sortSelect.addEventListener(‘change’, function () {
state.sort = this.value || ‘newest’;
loadComments(true);
});
}
if (loadMoreBtn) {
loadMoreBtn.addEventListener(‘click’, function () {
if (state.busy || !state.hasMore) return;
state.page += 1;
loadComments(false);
});
}
widget.addEventListener(‘click’, function (e) {
const likeBtn = e.target.closest(‘[data-action=”toggle-like”]’);
if (likeBtn) {
e.preventDefault();
toggleLike(likeBtn);
return;
}
const replyBtn = e.target.closest(‘[data-action=”toggle-reply”]’);
if (replyBtn) {
e.preventDefault();
openReplyBox(widget, Number(replyBtn.dataset.commentId || 0));
return;
}
const cancelReplyBtn = e.target.closest(‘[data-action=”cancel-reply”]’);
if (cancelReplyBtn) {
e.preventDefault();
closeReplyBox(cancelReplyBtn.closest(‘[data-role=”reply-box”]’));
}
});
widget.addEventListener(‘submit’, function (e) {
const replyForm = e.target.closest(‘.ev-comments__reply-form’);
if (replyForm) {
e.preventDefault();
submitReply(replyForm);
}
});
loadComments(true);
}
document.addEventListener(‘DOMContentLoaded’, function () {
document.querySelectorAll(‘.ev-comments’).forEach(initCommentsWidget);
});
})();
Trending

Government to launch forceful disarmament in Tana River County after amnesty endsCoast
|Abdirahman Khalif
|39 minutes ago

Police to mount checkpoints across Nairobi ahead of 2026 Saba Saba commemoration, warn against unlawful actsNational
|Abdirahman Khalif
|19 minutes ago

Kenyans urged to join Saba Saba march to honour victims of alleged abductions, killingsNews
|Lucy Mumbi
|1 day ago

Mombasa governor releases impounded boda bodas, urges riders to reject political violenceCoast
|Farhiya Hussein
|2 hours ago

Peace team sounds alarm over gang attacks on worship centres and peaceful gatheringsNational
|Abdirahman Khalif
|1 hour ago

CS Duale, Attorney General Oduor face contempt case over failure to implement KNDI court orderNews
|Carolyne Kubwa
|3 hours ago

Africa’s wildlife laws follow colonial model which separates people and animals: Why it’s not workingAfrica
|The Conversation
|1 hour ago

ODM sets sights on Nairobi Governor seat, urges Sakaja to join partyPolitics
|Barack Oduor
|10 hours ago

Haaland’s heroics send Norway into historic first World Cup quarter-final as Brazil crash outSports
|Erick Kariuki
|16 hours ago
disease preparedness after regional simulation exercise”>
Eastern Africa ramps up cross-border disease preparedness after regional simulation exerciseRegional
|Farhiya Hussein
|6 hours ago


